diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-12-01 16:33:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-01 14:33:06 -0800 |
commit | 4fc272fea6bc7332fae031ebeb12362cff1c35de (patch) | |
tree | 88092c6da3a6bb741caceab54f5372aee4ad5bae /include/exclusive_pokemon.h | |
parent | fd8720b75c56ef3f641e6c5abf6c446929c824b9 (diff) |
No wifi + 2 days on train = more decomp (#80)
* No wifi + 2 days on train = more decomp
* layin some more
* one func, one file
Diffstat (limited to 'include/exclusive_pokemon.h')
-rw-r--r-- | include/exclusive_pokemon.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/exclusive_pokemon.h b/include/exclusive_pokemon.h index 3fd09ea..17bb8ef 100644 --- a/include/exclusive_pokemon.h +++ b/include/exclusive_pokemon.h @@ -14,7 +14,7 @@ struct ExclusivePokemonData { u8 fill0[0x48]; u32 unk48[4]; - bool8 Exclusives[NUM_EXCLUSIVE_POKEMON]; + /* 0x58 */ bool8 Exclusives[NUM_EXCLUSIVE_POKEMON]; }; #define RED_EXCLUSIVE(species) \ @@ -36,5 +36,6 @@ extern struct ExclusivePokemonData *gUnknown_203B498; void LoadExclusivePokemon(void); struct ExclusivePokemonData *GetExclusivePokemon(void); void InitializeExclusivePokemon(void); +void UnlockExclusivePokemon(s16 pokeID); #endif // GUARD_EXCLUSIVE_POKEMON_H |