IsHM is not used within home/names.asm; group it with the other HM routines+data

This commit is contained in:
Remy Oukaour 2017-12-22 22:56:21 -05:00
parent b423e3b90b
commit 14a244ad3a
2 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,14 @@
; HM moves can't be forgotten
; HM moves can't be forgotten
IsHM:: ; 34df
cp HM01
jr c, .NotHM
scf
ret
.NotHM:
and a
ret
; 34e7
IsHMMove:: ; 34e7
ld hl, .HMMoves

View File

@ -258,16 +258,6 @@ GetTMHMName:: ; 3487
db "@"
; 34df
IsHM:: ; 34df
cp HM01
jr c, .NotHM
scf
ret
.NotHM:
and a
ret
; 34e7
INCLUDE "home/hm_moves.asm"
GetMoveName:: ; 34f8