diff options
author | Cheng Hann Gan <chenghanngan.us@gmail.com> | 2021-11-20 10:47:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 08:47:46 -0800 |
commit | 938a88551f6ddefb7f696b738696c8ce2d8e0e36 (patch) | |
tree | 35a8d3954aa03fb00d061d7603d28af0111bb516 /src/code_8086A3C.c | |
parent | 13552719886449c45aa0a06caccb7d7491382d9c (diff) |
Labeled more symbols (#77)
* Labeled more symbols
* Fixed comment typo
* Renamed some functions
Diffstat (limited to 'src/code_8086A3C.c')
-rw-r--r-- | src/code_8086A3C.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code_8086A3C.c b/src/code_8086A3C.c index 67fd08d..db438c0 100644 --- a/src/code_8086A3C.c +++ b/src/code_8086A3C.c @@ -4,7 +4,7 @@ #include "pokemon.h" extern struct DungeonGlobalData *gDungeonGlobalData; -extern void sub_807191C(struct DungeonEntity *); +extern void LoadIQSkills(struct DungeonEntity *); extern struct DungeonEntity *sub_8085480(void); extern struct DungeonEntity *sub_8085680(u32); extern void SetDefaultIQSkills(u8 *param_1, u8 param_2); @@ -57,7 +57,7 @@ void SetupBossFightHP(struct DungeonEntity *param_1, s32 newHP, u16 param_3) gDungeonGlobalData->unk66A = param_3; SetDefaultIQSkills(iVar2->IQSkillsSelected,iVar2->isBoss); - sub_807191C(param_1); + LoadIQSkills(param_1); } void sub_8086AC0(void) |