mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Correct local millisecond measurement in ping command output
This commit is contained in:
parent
00b0b7b848
commit
54920c817b
1 changed files with 1 additions and 1 deletions
|
|
@ -1517,7 +1517,7 @@ void Command_Ping_f(void)
|
||||||
|
|
||||||
if (!server && playeringame[consoleplayer])
|
if (!server && playeringame[consoleplayer])
|
||||||
{
|
{
|
||||||
CONS_Printf("\nYour ping is %d frames (%d ms)\n", playerpingtable[consoleplayer], (INT32)(playerpingtable[i] * (1000.00f / TICRATE)));
|
CONS_Printf("\nYour ping is %d frames (%d ms)\n", playerpingtable[consoleplayer], (INT32)(playerpingtable[consoleplayer] * (1000.00f / TICRATE)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue