diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-23 00:25:53 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-23 00:25:53 -0400 |
commit | 4f0c9cecf9a4c9dec50e2a5fce8392c2217068e0 (patch) | |
tree | 081ebd7f6ebbb71774df8dc151b68901c9bd6d23 /engine/battle/effect_commands.asm | |
parent | a1806d6e816369ad5452c4a008d7cd5802f1ec45 (diff) |
StringCmp → CompareBytes; CompareLong → CompareBytesLong
hStringCmpString[1/2] → h[EnemyMon/PartyMon1]Speed
Diffstat (limited to 'engine/battle/effect_commands.asm')
-rw-r--r-- | engine/battle/effect_commands.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/effect_commands.asm b/engine/battle/effect_commands.asm index eb30af88b..bb98badca 100644 --- a/engine/battle/effect_commands.asm +++ b/engine/battle/effect_commands.asm @@ -6154,7 +6154,7 @@ BattleCommand_Heal: push de push bc ld c, 2 - call StringCmp + call CompareBytes pop bc pop de pop hl @@ -6573,7 +6573,7 @@ BattleCommand_TimeBasedHealContinue: ; Don't bother healing if HP is already full. push bc - call StringCmp + call CompareBytes pop bc jr z, .Full |