RecalcHighestStage typo caught by Haze

This commit is contained in:
rtldg 2023-02-23 20:15:00 +00:00
parent 888b4be951
commit 7bd954880a

View File

@ -1605,7 +1605,7 @@ void RecalcHighestStage()
for (int i = 0; i < gI_MapZones; i++) for (int i = 0; i < gI_MapZones; i++)
{ {
int type = gA_ZoneCache[i].iType; int type = gA_ZoneCache[i].iType;
if (type == Zone_Stage) continue; if (type != Zone_Stage) continue;
int track = gA_ZoneCache[i].iTrack; int track = gA_ZoneCache[i].iTrack;
int stagenum = gA_ZoneCache[i].iData; int stagenum = gA_ZoneCache[i].iData;