mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Bump ping tiers by 1 tic
This commit is contained in:
parent
e242207d10
commit
87b92a7127
1 changed files with 8 additions and 8 deletions
|
|
@ -2338,13 +2338,13 @@ void HU_Erase(void)
|
|||
static int
|
||||
Ping_gfx_num (int lag)
|
||||
{
|
||||
if (lag < 2)
|
||||
if (lag <= 2)
|
||||
return 0;
|
||||
else if (lag < 4)
|
||||
else if (lag <= 4)
|
||||
return 1;
|
||||
else if (lag < 7)
|
||||
else if (lag <= 7)
|
||||
return 2;
|
||||
else if (lag < 10)
|
||||
else if (lag <= 10)
|
||||
return 3;
|
||||
else
|
||||
return 4;
|
||||
|
|
@ -2353,13 +2353,13 @@ Ping_gfx_num (int lag)
|
|||
static int
|
||||
Ping_gfx_color (int lag)
|
||||
{
|
||||
if (lag < 2)
|
||||
if (lag <= 2)
|
||||
return SKINCOLOR_JAWZ;
|
||||
else if (lag < 4)
|
||||
else if (lag <= 4)
|
||||
return SKINCOLOR_MINT;
|
||||
else if (lag < 7)
|
||||
else if (lag <= 7)
|
||||
return SKINCOLOR_GOLD;
|
||||
else if (lag < 10)
|
||||
else if (lag <= 10)
|
||||
return SKINCOLOR_RASPBERRY;
|
||||
else
|
||||
return SKINCOLOR_MAGENTA;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue