diff options
author | klektron <klektron@users.noreply.github.com> | 2020-12-27 14:16:44 +0100 |
---|---|---|
committer | klektron <klektron@users.noreply.github.com> | 2020-12-27 14:16:44 +0100 |
commit | 15b76961743e851d82b70674e282b51d297a77fd (patch) | |
tree | 0d4539077783040422384048846af2eb299ab7a3 | |
parent | 948538e01884f92694f5da5e4f0b80c6f347192a (diff) |
removed extra lines not used in spanish (naming screen) and fixed text when earning money
-rw-r--r-- | data/text/text_2.asm | 2 | ||||
-rwxr-xr-x | engine/menus/naming_screen.asm | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/data/text/text_2.asm b/data/text/text_2.asm index ea29fd3a..3ff26d58 100644 --- a/data/text/text_2.asm +++ b/data/text/text_2.asm @@ -945,7 +945,7 @@ _MoneyForWinningText:: text "¡<PLAYER> ganó" line "@" text_bcd wAmountMoneyWon, 3 | LEADING_ZEROES | LEFT_ALIGN - line "¥!" + text "¥!" prompt _TrainerDefeatedText:: diff --git a/engine/menus/naming_screen.asm b/engine/menus/naming_screen.asm index f0cfe01e..d40b73d7 100755 --- a/engine/menus/naming_screen.asm +++ b/engine/menus/naming_screen.asm @@ -467,11 +467,8 @@ PrintNamingText: call GetMonName hlcoord 4, 1 call PlaceString - ld hl, $1 - add hl, bc - ld [hl], "の" ; leftover from Japanese version; blank tile $c9 in English hlcoord 1, 3 - ld de, NicknameTextString + ld de, NicknameTextString ; $69BC jr .placeString .placeString |