diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2021-01-23 21:10:59 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2021-01-23 21:12:25 +0100 |
commit | 4abebbe3b2557347c7493a9685b646159f132e49 (patch) | |
tree | 7046882355aa666d2e2f6f8d6c784519e404fe60 | |
parent | Merge pull request #983 from ZLau92/ZLau92-corrected-plane-pitch (diff) | |
download | re3-4abebbe3b2557347c7493a9685b646159f132e49.tar re3-4abebbe3b2557347c7493a9685b646159f132e49.tar.gz re3-4abebbe3b2557347c7493a9685b646159f132e49.tar.bz2 re3-4abebbe3b2557347c7493a9685b646159f132e49.tar.lz re3-4abebbe3b2557347c7493a9685b646159f132e49.tar.xz re3-4abebbe3b2557347c7493a9685b646159f132e49.tar.zst re3-4abebbe3b2557347c7493a9685b646159f132e49.zip |
-rw-r--r-- | src/core/re3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index 19697c37..13f75dd9 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -1000,7 +1000,7 @@ extern bool gbRenderWorld2; "PIZZA BOY", "RC Raider Pickup", "RC Bandit Race", "RC Baron Race", "Checkpoint Charlie" }; - missionEntry = DebugMenuAddVar("Debug", "Select mission", &nextMissionToSwitch, nil, 1, 0, 96, missions); + missionEntry = DebugMenuAddVar("Debug", "Select mission", &nextMissionToSwitch, nil, 1, 0, ARRAY_SIZE(missions) - 1, missions); DebugMenuEntrySetWrap(missionEntry, true); DebugMenuAddCmd("Debug", "Start selected mission ", SwitchToMission); #endif |