Shift showping display up a bit

This commit is contained in:
James R 2019-11-17 18:53:48 -08:00
parent b05dec5294
commit 4439d29ed7
1 changed files with 1 additions and 1 deletions

View File

@ -433,7 +433,7 @@ void SCR_DisplayLocalPing(void)
UINT32 ping = playerpingtable[consoleplayer]; // consoleplayer's ping is everyone's ping in a splitnetgame :P
if (cv_showping.value == 1 || (cv_showping.value == 2 && servermaxping && ping > servermaxping)) // only show 2 (warning) if our ping is at a bad level
{
INT32 dispy = cv_ticrate.value ? 181 : 190;
INT32 dispy = cv_ticrate.value ? 180 : 189;
HU_drawPing(307, dispy, ping, true, V_SNAPTORIGHT | V_SNAPTOBOTTOM);
}
}