diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-24 21:59:05 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-24 21:59:05 +0100 |
commit | 442b1826a276d9270092b7f3e43de1dd87150f4d (patch) | |
tree | 3f49b7b8deaccc46599ec17c9cc089d55877ca42 /src/pokemon_summary_screen.c | |
parent | 980b055bf09215d89870730fa8cea2ac207e2260 (diff) |
asm party and fldeff clean-up
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rw-r--r-- | src/pokemon_summary_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index 975b5e803..7d44463dd 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -2143,7 +2143,7 @@ static void sub_81C174C(u8 taskId) static bool8 sub_81C18A8(void) { - if (pssData->firstMoveIndex == MAX_MON_MOVES || pssData->newMove == MOVE_NONE || sub_81B6D14(pssData->summary.moves[pssData->firstMoveIndex]) != 1) + if (pssData->firstMoveIndex == MAX_MON_MOVES || pssData->newMove == MOVE_NONE || IsMoveHm(pssData->summary.moves[pssData->firstMoveIndex]) != 1) return TRUE; else return FALSE; |