diff options
| author | mid-kid <esteve.varela@gmail.com> | 2019-04-08 14:15:10 +0200 |
|---|---|---|
| committer | mid-kid <esteve.varela@gmail.com> | 2019-04-09 16:09:18 +0200 |
| commit | 3e78e5b2b604568b13a37e4603dbd798373b9805 (patch) | |
| tree | 3485a00674f17a929aa21e8e9bc0bb5b1d36554f /engine/battle_anims | |
| parent | 2184b60a0cb5e3d1c2b64f7787f3fc0da5efbcab (diff) | |
TextBox -> Textbox
Homogenizing names.
Diffstat (limited to 'engine/battle_anims')
| -rw-r--r-- | engine/battle_anims/bg_effects.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/battle_anims/bg_effects.asm b/engine/battle_anims/bg_effects.asm index 00eb9a4ce..41d87275a 100644 --- a/engine/battle_anims/bg_effects.asm +++ b/engine/battle_anims/bg_effects.asm @@ -1417,7 +1417,7 @@ BattleBGEffect_Tackle: ldh [hLYOverrideEnd], a ld hl, BG_EFFECT_STRUCT_03 add hl, bc - ld [hl], $0 + ld [hl], 0 call BGEffect_CheckBattleTurn jr nz, .player_side ld a, 2 @@ -1451,10 +1451,10 @@ BattleBGEffect_25: ldh [hLYOverrideEnd], a ld hl, BG_EFFECT_STRUCT_03 add hl, bc - ld [hl], $0 + ld [hl], 0 call BGEffect_CheckBattleTurn jr nz, .player_side - ld a, 2 + ld a, 2 jr .okay .player_side @@ -1473,7 +1473,7 @@ Tackle_BGEffect25_2d_one: ld a, [hl] cp -8 jr z, .reached_limit - cp 8 + cp 8 jr nz, .finish .reached_limit call BattleBGEffects_IncrementJumptable |
