diff options
author | Cheng Hann Gan <chenghanngan.us@gmail.com> | 2021-10-10 10:59:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 07:59:35 -0700 |
commit | 2d4c802d769f53462a2742a5c6afaad4d7f290fb (patch) | |
tree | ca8430d7e2b05f52ba6df4d6e704834f634fad48 /include/pokemon.h | |
parent | fb7a3a03e71fc7f83ff5471067b7cbe2e069d0fc (diff) |
Extracted species/item/move strings (#63)
* Extracted species/item/move strings
* Used binary strings for bitwise flag variables
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index fc3b4bb..174eda2 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -133,7 +133,7 @@ struct gPokemon /* 0x8 */ u8 overworld_palette; /* 0x9 */ u8 size; /* 0xC */ s32 move_speed; - /* 0x10 */ u16 dialogue_sprites; + /* 0x10 */ u16 dialogue_sprites; // Bitwise flags for whether a dialogue sprite/portrait is available for each emotion. /* 0x12 */ bool8 unk12; /* 0x13 */ u8 types[2]; /* 0x15 */ u8 walkable_tiles; |