mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-29 16:01:44 +00:00
sw32. Flee in terror. This'll break compilation for everything until -sdl32 compiles. sw32 wont work for a while either, so don't get overly excited yet.
This commit is contained in:
parent
805c1bd242
commit
c6266aba36
103 changed files with 15944 additions and 1459 deletions
|
@ -83,19 +83,19 @@ CL_NetStats (int swap)
|
|||
if (show_ping->int_val) {
|
||||
int ping = cl.players[cl.playernum].ping;
|
||||
ping = bound (0, ping, 999);
|
||||
Draw_String8 (x, y, va ("%3d ms", ping));
|
||||
Draw_String (x, y, va ("%3d ms", ping));
|
||||
x+= 48;
|
||||
} else if (swap) {
|
||||
x += 56;
|
||||
}
|
||||
if (show_ping->int_val && show_pl->int_val) {
|
||||
Draw_String8(x, y, "/");
|
||||
Draw_String(x, y, "/");
|
||||
x += 8;
|
||||
}
|
||||
if (show_pl->int_val) {
|
||||
int lost = CL_CalcNet ();
|
||||
lost = bound (0, lost, 999);
|
||||
Draw_String8 (x, y, va ("%3d pl", lost));
|
||||
Draw_String (x, y, va ("%3d pl", lost));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue