diff options
author | dannye <33dannye@gmail.com> | 2020-11-07 14:35:40 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2020-11-07 14:35:40 -0600 |
commit | 453107ab8ac6a7b76d21c466e32aa7290643724d (patch) | |
tree | 5b2fd7691446b591fca4c3dc396d5a672299f892 /home | |
parent | 989545f0e03b7e32d8ea80d8ab4455576dbd7116 (diff) |
More debug yellow
only debug menu left
Diffstat (limited to 'home')
-rw-r--r-- | home/overworld.asm | 4 | ||||
-rw-r--r-- | home/text.asm | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/home/overworld.asm b/home/overworld.asm index 68d50695..26451bf1 100644 --- a/home/overworld.asm +++ b/home/overworld.asm @@ -2292,7 +2292,11 @@ CheckForUserInterruption:: jr z, .input ldh a, [hJoy5] +IF DEF(_DEBUG) + and START | SELECT | A_BUTTON +ELSE and START | A_BUTTON +ENDC jr nz, .input dec c diff --git a/home/text.asm b/home/text.asm index adb81425..70fade56 100644 --- a/home/text.asm +++ b/home/text.asm @@ -629,7 +629,11 @@ TextCommandJumpTable:: dw TextCommand_BOX ; TX_BOX dw TextCommand_LOW ; TX_LOW dw TextCommand_PROMPT_BUTTON ; TX_PROMPT_BUTTON +IF DEF(_DEBUG) + dw _ContTextNoPause ; TX_SCROLL +ELSE dw TextCommand_SCROLL ; TX_SCROLL +ENDC dw TextCommand_START_ASM ; TX_START_ASM dw TextCommand_NUM ; TX_NUM dw TextCommand_PAUSE ; TX_PAUSE |