M_SetupGametypeMenu: Fix skipping to the Race select setup menu if Capsules and Special aren't unlocked

This commit is contained in:
toaster 2023-02-26 23:37:00 +00:00
parent 26ceb13672
commit 7684cc1cf3

View file

@ -59,7 +59,7 @@ void M_SetupGametypeMenu(INT32 choice)
if (!anyunlocked) if (!anyunlocked)
{ {
// Only one non-Back entry, let's skip straight to Race. // Only one non-Back entry, let's skip straight to Race.
M_SetupRaceMenu(-1); M_SetupRaceMenu(0);
return; return;
} }
} }