You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
Fix level enum conflict with 99+ levels (#307)
This commit is contained in:
@@ -14,8 +14,8 @@ enum LevelNum {
|
||||
LEVEL_COUNT,
|
||||
LEVEL_MAX = LEVEL_COUNT - 1,
|
||||
LEVEL_MIN = LEVEL_NONE + 1,
|
||||
LEVEL_FILE_SELECT = 100, //! This probably breaks if you have 99+ levels
|
||||
LEVEL_LEVEL_SELECT = (LEVEL_FILE_SELECT + 1)
|
||||
LEVEL_FILE_SELECT = LEVEL_COUNT + 1,
|
||||
LEVEL_LEVEL_SELECT = LEVEL_FILE_SELECT + 1,
|
||||
};
|
||||
|
||||
#undef STUB_LEVEL
|
||||
|
||||
Reference in New Issue
Block a user