diff options
Diffstat (limited to 'engine/battle')
-rwxr-xr-x | engine/battle/core.asm | 8 | ||||
-rw-r--r-- | engine/battle/experience.asm | 2 | ||||
-rw-r--r-- | engine/battle/moveEffects/focus_energy_effect.asm | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 9d300588..9241ce6b 100755 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -2129,7 +2129,7 @@ DisplayBattleMenu: ld [hl], "▶" ld c, 50 call DelayFrames - ld [hl], $ec + ld [hl], "▷" ld a, $2 ; select the "ITEM" menu jp .upperLeftMenuItemWasNotSelected .oldManName @@ -2683,7 +2683,7 @@ SelectMenuItem: dec a ld bc, SCREEN_WIDTH call AddNTimes - ld [hl], $ec + ld [hl], "▷" .select ld hl, hFlags_0xFFF6 set 1, [hl] @@ -7729,7 +7729,7 @@ MonsStatsRoseText: ret GreatlyRoseText: - db $0a + TX_DELAY TX_FAR _GreatlyRoseText ; fallthrough RoseText: @@ -7934,7 +7934,7 @@ MonsStatsFellText: ret GreatlyFellText: - db $0a + TX_DELAY TX_FAR _GreatlyFellText ; fallthrough FellText: diff --git a/engine/battle/experience.asm b/engine/battle/experience.asm index f73f1d5a..9aee8bd7 100644 --- a/engine/battle/experience.asm +++ b/engine/battle/experience.asm @@ -368,5 +368,5 @@ ExpPointsText: GrewLevelText: TX_FAR _GrewLevelText - db $0b + TX_SFX_LEVEL_UP db "@" diff --git a/engine/battle/moveEffects/focus_energy_effect.asm b/engine/battle/moveEffects/focus_energy_effect.asm index 9ba0ade0..69301d8e 100644 --- a/engine/battle/moveEffects/focus_energy_effect.asm +++ b/engine/battle/moveEffects/focus_energy_effect.asm @@ -17,6 +17,6 @@ FocusEnergyEffect_: jpab PrintButItFailedText_ GettingPumpedText: - db $0a + TX_DELAY TX_FAR _GettingPumpedText db "@" |