diff options
| author | YamaArashi <shadow962@live.com> | 2015-02-07 22:18:42 -0800 |
|---|---|---|
| committer | YamaArashi <shadow962@live.com> | 2015-02-07 22:18:42 -0800 |
| commit | 72bbaed99f725b2b8b0d2653968042ce1625354c (patch) | |
| tree | 691937b64dea468ccba764cf47913ff0a7e4045b /engine/titlescreen.asm | |
| parent | Named wram symbols (diff) | |
| download | pokeyellow-72bbaed99f725b2b8b0d2653968042ce1625354c.tar.gz pokeyellow-72bbaed99f725b2b8b0d2653968042ce1625354c.tar.xz pokeyellow-72bbaed99f725b2b8b0d2653968042ce1625354c.zip | |
fixed hp bar wram label and misc
Diffstat (limited to 'engine/titlescreen.asm')
| -rwxr-xr-x | engine/titlescreen.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/titlescreen.asm b/engine/titlescreen.asm index 5e8a15d5..ed23fbc4 100755 --- a/engine/titlescreen.asm +++ b/engine/titlescreen.asm @@ -237,14 +237,14 @@ ENDC call LoadGBPal ld a, [hJoyHeld] ld b, a - and $46 - cp $46 - jp z, Func_448e + and D_UP | SELECT | B_BUTTON + cp D_UP | SELECT | B_BUTTON + jp z, .doClearSaveDialogue jp MainMenu -Func_448e: ; 448e (1:448e) - ld b, BANK(Func_1c98a) - ld hl, Func_1c98a +.doClearSaveDialogue + ld b, BANK(DoClearSaveDialogue) + ld hl, DoClearSaveDialogue jp Bankswitch Func_4496: ; 4496 (1:4496) |
