diff options
-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): |