else if

tustin2121 2024-01-24 11:39:24 -05:00
parent 3545436d28
commit 5ff5cbe7b1
1 changed files with 1 additions and 1 deletions

@ -128,7 +128,7 @@ In `src/save.c`, the `LoadGameSave` function will call to `TryLoadSaveSlot`, and
+ if (status == SAVE_STATUS_OK) {
+ if (gSaveBlock2Ptr->_saveSentinel != 0xFF)
+ status = SAVE_STATUS_OUTDATED;
+ if (gSaveBlock2Ptr->saveVersion != SAVE_VERSION)
+ else if (gSaveBlock2Ptr->saveVersion != SAVE_VERSION)
+ status = SAVE_STATUS_OUTDATED;
+ }
+