From bfaa55f2fe3d557570260f6b4956e39c3b0f1218 Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Mon, 15 Nov 2021 11:02:26 -0800 Subject: 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 --- src/pokemon_mid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pokemon_mid.c') 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; -- cgit v1.2.3