diff options
author | Astatin <[email protected]> | 2025-08-19 17:36:46 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-08-19 17:36:46 +0200 |
commit | 2695e4c42c4bd8007803cf674384a8a34bcd78ef (patch) | |
tree | 3f69d28c7e43b966ce1ffbb2e0298d8eccdcc46e /gui.gbasm | |
parent | bbc5ab6ad02dbabcb79e1e83195288c0fb8cf1d1 (diff) |
Do not close dialogue on start button
Diffstat (limited to 'gui.gbasm')
-rw-r--r-- | gui.gbasm | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -268,8 +268,9 @@ Check_dialogue_action: CP $00 RET Z BIT 0, A + RET Z .SET_SOUND_EFFECT =_sound_effect_Click - JP NZ, =Dialogue_script_step + JP =Dialogue_script_step .Dungeon_Menu: LD A, $mem_button_action @@ -282,6 +283,7 @@ Check_dialogue_action: BIT 3, A JR Z, =.test_attack_chosen .SET_SOUND_EFFECT =_sound_effect_Menu_Close + LD A, $69 JP =Exit_Menu .test_attack_chosen: |