diff options
author | yenatch <yenatch@gmail.com> | 2018-07-17 18:16:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-17 18:16:12 -0400 |
commit | 3e14c1f26e91b1fc1d18eed389518ae8454e938f (patch) | |
tree | 64db6e9f438a62248ef0f0fe8e874ca6cf94b720 /engine/menus/save.asm | |
parent | 89c2646ccaa2c9a0afb358c1d9738e9bb0d42c97 (diff) | |
parent | b23f0b2bdaa993f17d8312bcde5f2b8a59ef9c90 (diff) |
Merge pull request #539 from Rangi42/master
[RTM] Miscellaneous reorganization fixes
Diffstat (limited to 'engine/menus/save.asm')
-rw-r--r-- | engine/menus/save.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/menus/save.asm b/engine/menus/save.asm index 469c55abd..190f5f887 100644 --- a/engine/menus/save.asm +++ b/engine/menus/save.asm @@ -89,7 +89,7 @@ MoveMonWOMail_InsertMon_SaveGame: pop de ld a, e ld [wCurBox], a - ld a, $1 + ld a, TRUE ld [wSaveFileExists], a farcall StageRTCTimeForSave farcall BackupMysteryGift @@ -253,7 +253,7 @@ SavedTheGame: ret SaveGameData_: - ld a, 1 + ld a, TRUE ld [wSaveFileExists], a farcall StageRTCTimeForSave farcall BackupMysteryGift @@ -627,7 +627,7 @@ TryLoadSaveFile: ret TryLoadSaveData: - xor a + xor a ; FALSE ld [wSaveFileExists], a call CheckPrimarySaveFile ld a, [wSaveFileExists] @@ -690,7 +690,7 @@ CheckPrimarySaveFile: ld bc, wOptionsEnd - wOptions call CopyBytes call CloseSRAM - ld a, $1 + ld a, TRUE ld [wSaveFileExists], a .nope |