diff options
-rw-r--r-- | Remove-the-artificial-save-delay.md | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Remove-the-artificial-save-delay.md b/Remove-the-artificial-save-delay.md index 7195e4d..ecefefd 100644 --- a/Remove-the-artificial-save-delay.md +++ b/Remove-the-artificial-save-delay.md @@ -328,14 +328,13 @@ Making a final edit to `SavedTheGame` achieves this goal: ```diff SavedTheGame: -+ ld a, [wOptions] -+ push af -+ xor a ; instant text speed -+ ld [wOptions], a ++ ld hl, wOptions ++ set NO_TEXT_SCROLL, [hl] ++ push hl + ld hl, .saving_text + call PrintText -+ pop af -+ ld [wOptions], a ++ pop hl ++ res NO_TEXT_SCROLL, [hl] call SaveGameData ; <PLAYER> saved the game! ld hl, Text_PlayerSavedTheGame |