mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-20 20:41:10 +00:00
No entries means no entries
This commit is contained in:
parent
71bbe3f28a
commit
8b22e7f691
1 changed files with 2 additions and 2 deletions
|
|
@ -6209,7 +6209,7 @@ static void M_DrawStatsChars(void)
|
|||
boolean dobottomarrow = (statisticsmenu.location < statisticsmenu.maxscroll);
|
||||
INT32 location = statisticsmenu.location;
|
||||
|
||||
if (!statisticsmenu.maplist)
|
||||
if (!statisticsmenu.maplist || !statisticsmenu.nummaps)
|
||||
{
|
||||
V_DrawCenteredThinString(BASEVIDWIDTH/2, 62, 0, "No chars!?");
|
||||
return;
|
||||
|
|
@ -6296,7 +6296,7 @@ static void M_DrawStatsGP(void)
|
|||
boolean dobottomarrow = (statisticsmenu.location < statisticsmenu.maxscroll);
|
||||
INT32 location = statisticsmenu.location;
|
||||
|
||||
if (!statisticsmenu.maplist)
|
||||
if (!statisticsmenu.maplist || !statisticsmenu.nummaps)
|
||||
{
|
||||
V_DrawCenteredThinString(BASEVIDWIDTH/2, 62, 0, "No cups!?");
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue