diff options
author | SaveState <pgattic@gmail.com> | 2019-05-15 10:41:42 -0400 |
---|---|---|
committer | SaveState <pgattic@gmail.com> | 2019-05-15 10:41:42 -0400 |
commit | 2f1ec5c568db70f8dc6db8b0f0f44a1271327fb2 (patch) | |
tree | dde4e1a874f3de420742de8c368f573d5fd29535 | |
parent | f79d53baec56ae2214d1a14990056aa5f3455c25 (diff) |
Updated Remove Artificial Save Delay (markdown)
-rw-r--r-- | Remove-Artificial-Save-Delay.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Remove-Artificial-Save-Delay.md b/Remove-Artificial-Save-Delay.md index 86652ef..fe1a781 100644 --- a/Remove-Artificial-Save-Delay.md +++ b/Remove-Artificial-Save-Delay.md @@ -33,6 +33,14 @@ 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: +```diff + ld [H_AUTOBGTRANSFERENABLED], a +- ld c, 30 ++ ld c, 5 ; shorter time while displaying stats + jp DelayFrames +``` + Optionally, if you want to remove the "Would you like to save the game?" part, you could also remove these: [engine/save.asm](https://github.com/pret/pokered/blob/master/engine/save.asm): |