Misc fixes for the usage of constants

Several improvements that will make it easier to edit some data
structures for everyone.
This commit is contained in:
mid-kid
2017-12-19 21:28:06 +01:00
parent 21607bdd1f
commit cbec3771e2
4 changed files with 6 additions and 6 deletions

View File

@@ -3881,11 +3881,11 @@ BattleCommand_Counter: ; 35813
ld de, StringBuffer1
call GetMoveData
ld a, [StringBuffer1 + 2]
ld a, [StringBuffer1 + MOVE_POWER]
and a
ret z
ld a, [StringBuffer1 + 3]
ld a, [StringBuffer1 + MOVE_TYPE]
cp SPECIAL
ret nc