summaryrefslogtreecommitdiff
path: root/arm9/src/script_pokemon_util.c
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-06-05 20:35:30 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-06-05 20:35:30 -0400
commitbd24307eb058cf5f8bafb11891bd7745f77ec349 (patch)
tree56be96a27a0308c5abc249ff8c50b3976d346272 /arm9/src/script_pokemon_util.c
parentc87b617058767519480ef2d19e233fe0e99ca01d (diff)
Replace explicit GF_AssertFail with GF_ASSERT
Diffstat (limited to 'arm9/src/script_pokemon_util.c')
-rw-r--r--arm9/src/script_pokemon_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm9/src/script_pokemon_util.c b/arm9/src/script_pokemon_util.c
index 55519ca3..de78ae28 100644
--- a/arm9/src/script_pokemon_util.c
+++ b/arm9/src/script_pokemon_util.c
@@ -109,7 +109,7 @@ struct Pokemon * GetFirstAliveMonInParty_CrashIfNone(struct PlayerParty * party)
if(MonNotFaintedOrEgg(mon))
return mon;
}
- GF_AssertFail();
+ GF_ASSERT(0);
return 0;
}