mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'welcome-to-errormode' into 'master'
abs on unsigned does nothing See merge request KartKrew/Kart!220
This commit is contained in:
commit
d64f77cf06
1 changed files with 2 additions and 2 deletions
|
|
@ -9318,8 +9318,8 @@ static void K_drawKartLapsAndRings(void)
|
|||
if (cv_numlaps.value >= 10)
|
||||
{
|
||||
UINT8 ln[2];
|
||||
ln[0] = ((abs(stplyr->laps) / 10) % 10);
|
||||
ln[1] = (abs(stplyr->laps) % 10);
|
||||
ln[0] = ((stplyr->laps / 10) % 10);
|
||||
ln[1] = (stplyr->laps % 10);
|
||||
|
||||
V_DrawScaledPatch(fx+13, fy, V_HUDTRANS|splitflags, pingnum[ln[0]]);
|
||||
V_DrawScaledPatch(fx+17, fy, V_HUDTRANS|splitflags, pingnum[ln[1]]);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue