From d541002ab6de082d31a3fbc1c502367bb312edd6 Mon Sep 17 00:00:00 2001 From: PokeCodec <67983839+PokeCodec@users.noreply.github.com> Date: Wed, 9 Sep 2020 15:54:24 -0400 Subject: Type adjust --- include/pokemon.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/pokemon.h b/include/pokemon.h index d75ec94f3..94353bea2 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -123,12 +123,12 @@ struct Pokemon struct Unknown_806F160_Struct { - u8 field_0_0:4; - u8 field_0_1:4; - u8 field_1; - u8 magic; - u8 field_3_0:4; - u8 field_3_1:4; + u32 field_0_0:4; + u32 field_0_1:4; + u32 field_1:8; + u32 magic:8; + u32 field_3_0:4; + u32 field_3_1:4; void *bytes; u8 **byteArrays; struct SpriteTemplate *templates; -- cgit v1.2.3 From 7f1827767c27c6b696a9cd1a8c15b2b31a125b78 Mon Sep 17 00:00:00 2001 From: PokeCodec <67983839+PokeCodec@users.noreply.github.com> Date: Wed, 9 Sep 2020 16:05:22 -0400 Subject: Document size field of unknown struct --- include/pokemon.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/pokemon.h b/include/pokemon.h index 94353bea2..81c17f545 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -126,9 +126,9 @@ struct Unknown_806F160_Struct u32 field_0_0:4; u32 field_0_1:4; u32 field_1:8; - u32 magic:8; - u32 field_3_0:4; - u32 field_3_1:4; + u16 magic:8; + u32 size:4; + u16 field_3_1:4; void *bytes; u8 **byteArrays; struct SpriteTemplate *templates; -- cgit v1.2.3