mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 07:21:48 +00:00
Fix inconsistencies with some maps-related statistics
This commit is contained in:
parent
49e3e6b500
commit
52b4104f86
1 changed files with 6 additions and 1 deletions
|
|
@ -6016,9 +6016,14 @@ static void M_DrawStatsMaps(void)
|
|||
|
||||
for (i = 0; i < nummapheaders; i++)
|
||||
{
|
||||
// Check for no visibility
|
||||
if (!mapheaderinfo[i] || (mapheaderinfo[i]->menuflags & (LF2_NOTIMEATTACK|LF2_HIDEINSTATS|LF2_HIDEINMENU)))
|
||||
continue;
|
||||
|
||||
// No TEST RUN, as that's another exception to Time Attack too
|
||||
if (!mapheaderinfo[i]->typeoflevel)
|
||||
continue;
|
||||
|
||||
if (mapheaderinfo[i]->records.time <= 0)
|
||||
{
|
||||
mapsunfinished++;
|
||||
|
|
@ -6171,7 +6176,7 @@ static void M_DrawStatsMaps(void)
|
|||
}
|
||||
bottomarrow:
|
||||
if (dobottomarrow)
|
||||
V_DrawCharacter(10, y-STATSSTEP + (skullAnimCounter/5),
|
||||
V_DrawCharacter(10, y-10 + (skullAnimCounter/5),
|
||||
'\x1B' | highlightflags, false); // down arrow
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue