diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | engine/menus/naming_screen.asm | 8 |
2 files changed, 4 insertions, 9 deletions
@@ -52,13 +52,8 @@ all: $(roms) gold: pokegold.gbc silver: pokesilver.gbc -tidy: - rm -f $(roms) $(gold_obj) $(silver_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o - $(MAKE) clean -C tools/ - clean: rm -f $(roms) $(gold_obj) $(silver_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o - find gfx \( -iname "*.png" -not -iname "big_onix.png" -not -iname "slots_3.png" \) -delete $(MAKE) clean -C tools/ compare: $(roms) diff --git a/engine/menus/naming_screen.asm b/engine/menus/naming_screen.asm index 02d20b29..34e2c6f2 100644 --- a/engine/menus/naming_screen.asm +++ b/engine/menus/naming_screen.asm @@ -649,10 +649,10 @@ NamingScreen_AnimateCursor: NamingScreen_TryAddCharacter: ld a, [wNamingScreenLastCharacter] ld hl, Dakutens - cp $e5 + cp "゙" ; $e5 jr z, asm_11f06 ld hl, Handakutens - cp $e4 + cp "゚" ; $e4 jr z, asm_11f06 MailComposition_TryAddCharacter: @@ -1334,10 +1334,10 @@ ComposeMail_GetCursorPosition: MailComposition_TryAddLastCharacter: ld a, [wNamingScreenLastCharacter] ld hl, Dakutens - cp $e5 + cp "゙" ; $e5 jr z, .asm_1258b ld hl, Handakutens - cp $e4 + cp "゚" ; $e4 jp nz, MailComposition_TryAddCharacter .asm_1258b |