smoother console scrolling (at least with the mouse)
support RLE+luminance+alpha tga files. support half-float tga files. recognise hdr astc images. added appropriate fallbacks for astc support. load mip-less .astc files (mostly just for debugging stuff). allow packages to warn about required engine/gpu features. catch when stdin flags get changed to blocking by external libraries, to avoid fatal stalls. basic support for .mdx files (kingpin models) sort packages loaded via wildcards, by datetime then name, to avoid random ordering from certain filesystems. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5531 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
d561772bb0
commit
41b0d993f2
48 changed files with 5118 additions and 1466 deletions
|
@ -1132,7 +1132,7 @@ static void SVC_Status (void)
|
|||
int ping;
|
||||
int top, bottom;
|
||||
char frags[64];
|
||||
char *skin, *team, *botpre;
|
||||
char *skin, *team, *botpre, *specpre;
|
||||
|
||||
int slots=0;
|
||||
|
||||
|
@ -1170,6 +1170,7 @@ static void SVC_Status (void)
|
|||
else
|
||||
botpre = "";
|
||||
|
||||
specpre = "";
|
||||
if (cl->spectator)
|
||||
{ //silly mvdsv stuff
|
||||
if (displayflags & STATUS_SPECTATORS_AS_PLAYERS)
|
||||
|
@ -1181,7 +1182,7 @@ static void SVC_Status (void)
|
|||
{
|
||||
ping = -ping;
|
||||
sprintf(frags, "%i", -9999);
|
||||
name = va("\\s\\%s", name);
|
||||
specpre = "\\s\\";
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -1189,15 +1190,15 @@ static void SVC_Status (void)
|
|||
|
||||
if (displayflags & STATUS_SHOWTEAMS)
|
||||
{
|
||||
Con_Printf ("%i %s %i %i \"%s%s\" \"%s\" %i %i \"%s\"\n", cl->userid,
|
||||
Con_Printf ("%i %s %i %i \"%s%s%s\" \"%s\" %i %i \"%s\"\n", cl->userid,
|
||||
frags, (int)(realtime - cl->connection_started)/60,
|
||||
ping, botpre, name, skin, top, bottom, team);
|
||||
ping, specpre, botpre, name, skin, top, bottom, team);
|
||||
}
|
||||
else
|
||||
{
|
||||
Con_Printf ("%i %s %i %i \"%s%s\" \"%s\" %i %i\n", cl->userid,
|
||||
Con_Printf ("%i %s %i %i \"%s%s%s\" \"%s\" %i %i\n", cl->userid,
|
||||
frags, (int)(realtime - cl->connection_started)/60,
|
||||
ping, botpre, name, skin, top, bottom);
|
||||
ping, specpre, botpre, name, skin, top, bottom);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue