diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-07-07 11:39:34 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2021-07-07 11:39:34 -0500 |
commit | 6aa475c6310c609743a9a2005e7942050c396865 (patch) | |
tree | 18be7369829badfef35a6c337005e875049027e5 /include/exclusive_pokemon.h | |
parent | f308c79eba1ba8e6bc2134529a2e4f4f21c9c2c2 (diff) |
Sese's vacation work
Diffstat (limited to 'include/exclusive_pokemon.h')
-rw-r--r-- | include/exclusive_pokemon.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/exclusive_pokemon.h b/include/exclusive_pokemon.h index 69a4f03..ee3e607 100644 --- a/include/exclusive_pokemon.h +++ b/include/exclusive_pokemon.h @@ -1,5 +1,5 @@ -#ifndef EXCLUSIVE_POKEMON_H -#define EXCLUSIVE_POKEMON_H +#ifndef GUARD_EXCLUSIVE_POKEMON_H +#define GUARD_EXCLUSIVE_POKEMON_H #define NUM_EXCLUSIVE_POKEMON 12 @@ -12,7 +12,8 @@ struct ExclusivePokemon struct ExclusivePokemonData { - u8 fill0[0x58]; + u8 fill0[0x48]; + u32 unk48[4]; bool8 Exclusives[NUM_EXCLUSIVE_POKEMON]; }; @@ -35,4 +36,4 @@ void LoadExclusivePokemon(void); struct ExclusivePokemonData *GetExclusivePokemon(void); void InitializeExclusivePokemon(void); -#endif // EXCLUSIVE_POKEMON_H +#endif // GUARD_EXCLUSIVE_POKEMON_H |