diff options
author | klektron <klektron@users.noreply.github.com> | 2020-12-30 18:19:45 +0100 |
---|---|---|
committer | klektron <klektron@users.noreply.github.com> | 2020-12-30 18:19:45 +0100 |
commit | 4bd566bbb14ba293e23ec8c21ee1a7541d9f975a (patch) | |
tree | 3631e490843d34030d680c3fcf42035376edf559 /engine | |
parent | af2eb191837e9c2921b7e8015874568675f32e9f (diff) |
mooore fixes
Diffstat (limited to 'engine')
-rwxr-xr-x | engine/battle/core.asm | 3 | ||||
-rwxr-xr-x | engine/movie/hall_of_fame.asm | 13 |
2 files changed, 9 insertions, 7 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 03c6f7c6..1ca4fa43 100755 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -2677,7 +2677,8 @@ MoveDisabledText: text_end WhichTechniqueString: - db "¿Qué técnica?@" + db "¿Qué técnica?" + next " @" SelectMenuItem_CursorUp: ld a, [wCurrentMenuItem] diff --git a/engine/movie/hall_of_fame.asm b/engine/movie/hall_of_fame.asm index a7d3ed40..8230215c 100755 --- a/engine/movie/hall_of_fame.asm +++ b/engine/movie/hall_of_fame.asm @@ -92,7 +92,7 @@ AnimateHallOfFame: ret HallOfFameText: - db "HALL OF FAME@" + db "HALL DE FAMA@" HoFShowMonOrPlayer: call ClearScreen @@ -178,9 +178,9 @@ HoFDisplayMonInfo: jp PlayCry HoFMonInfoText: - db "LEVEL/" - next "TYPE1/" - next "TYPE2/@" + db "NIVEL/" + next "TIPO1/" + next "TIPO2/@" HoFLoadPlayerPics: ld de, RedPicFront @@ -239,6 +239,7 @@ HoFDisplayPlayerStats: ld de, wPlayerMoney ld c, $a3 call PrintBCDNumber + ld [hl], "¥" ld hl, DexSeenOwnedText call HoFPrintTextAndDelay ld hl, DexRatingText @@ -251,10 +252,10 @@ HoFPrintTextAndDelay: jp DelayFrames HoFPlayTimeText: - db "PLAY TIME@" + db "TIEMPO J.@" HoFMoneyText: - db "MONEY@" + db "DIN.@" DexSeenOwnedText: text_far _DexSeenOwnedText |