diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-11-15 11:02:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 11:02:26 -0800 |
commit | bfaa55f2fe3d557570260f6b4956e39c3b0f1218 (patch) | |
tree | 77611afc222d74c9a68a5577df3ce9916d9b3b97 /src/pokemon_mid.c | |
parent | 0ea22237c933523f66d7468a953c5a5057b3a899 (diff) |
Label and doc iq skills and tactics info (#75)
* label/doc iq skills/tactics info
* decomp a few more dungeon_util and label some funcs
* doc the IQSkills field
Diffstat (limited to 'src/pokemon_mid.c')
-rw-r--r-- | src/pokemon_mid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_mid.c b/src/pokemon_mid.c index 94387b2..38eb0d4 100644 --- a/src/pokemon_mid.c +++ b/src/pokemon_mid.c @@ -526,7 +526,7 @@ void xxx_pokemonstruct_to_pokemon2_808DE50(struct PokemonStruct2 * a1, struct Po a1->unk0 = pokemon->unk0; a1->unkHasNextStage = pokemon->unkHasNextStage; a1->IQ = pokemon->IQ; - a1->unk4C = pokemon->unk20; + a1->IQSkills = pokemon->IQSkills; sub_808E6F4(&a1->unk54); a1->unk4 = pokemon->unk4; a1->unk2 = pokemon->unk2; @@ -580,7 +580,7 @@ void xxx_pokemon2_to_pokemonstruct_808DF44(struct PokemonStruct* pokemon, struct pokemon->unk0 = a2->unk0; pokemon->unkHasNextStage = a2->unkHasNextStage; pokemon->IQ = a2->IQ; - pokemon->unk20 = a2->unk4C; + pokemon->IQSkills = a2->IQSkills; pokemon->unk4 = a2->unk4; pokemon->unk2 = a2->unk2; pokemon->speciesNum = a2->speciesNum; |