diff options
author | SaveState <pgattic@gmail.com> | 2019-05-15 12:20:37 -0400 |
---|---|---|
committer | SaveState <pgattic@gmail.com> | 2019-05-15 12:20:37 -0400 |
commit | 2567b19e6cf4edb4aeb9b0079a3041a3d571ff3b (patch) | |
tree | d4016055fafa10d7bf7ea5bd9d35a63ec997f024 | |
parent | 2f1ec5c568db70f8dc6db8b0f0f44a1271327fb2 (diff) |
Explains what the changes are doing
-rw-r--r-- | Remove-Artificial-Save-Delay.md | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Remove-Artificial-Save-Delay.md b/Remove-Artificial-Save-Delay.md index fe1a781..8b87a13 100644 --- a/Remove-Artificial-Save-Delay.md +++ b/Remove-Artificial-Save-Delay.md @@ -22,7 +22,7 @@ SaveSAV: call PlaySoundWaitForCurrent call WaitForSoundToFinish - ld c, 30 -+ ld c, 10 ; Shorter time than before (removing this and the line below causes errors) ++ ld c, 10 ; Shorter time than before jp DelayFrames -NowSavingString: @@ -33,13 +33,16 @@ SaveSAVConfirm: coord hl, 0, 7 ... ``` -and [/engine/menu/main_menu.asm](https://github.com/pret/pokered/blob/master/engine/menu/main_menu.asm), line 389: +What that does is it removes the part of the code where the "Now saving..." text is drawn, as well as removing the delay during which that text is displayed. It also shortens the delay for after it says "Player saved the game!" + +Also, you could edit [/engine/menu/main_menu.asm](https://github.com/pret/pokered/blob/master/engine/menu/main_menu.asm), line 389: ```diff ld [H_AUTOBGTRANSFERENABLED], a - ld c, 30 + ld c, 5 ; shorter time while displaying stats jp DelayFrames ``` +This part makes the game pause for a shorter time after displaying player stats before it saves. If you feel like this time is too short, you can change that 5 we added into a higher number. Optionally, if you want to remove the "Would you like to save the game?" part, you could also remove these: @@ -67,4 +70,6 @@ and [text.asm](https://github.com/pret/pokered/blob/master/text.asm) (about line - line "SAVE the game?" - done ``` -There! It's as simple as that! The game should save quickly without having to say "Now saving...". Enjoy!
\ No newline at end of file +This optional change completely removes the "Would you like to SAVE the game?" choice, as well as the text and text pointer. For it. + +Done! The game should save quickly without going through that useless menu. Enjoy!
\ No newline at end of file |