diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-03-11 14:21:43 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-03-11 14:21:43 -0400 |
commit | 6b4b6a54af99da1e1f6439a58285038a5fd11604 (patch) | |
tree | 1e225d62994bcd82f95070c7555b47532ddd9e1c /include | |
parent | 3aeb294572174d1f927286d507d15cda04e58601 (diff) |
Make sub_808BDE8 call signature more sane
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon_storage_system.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/pokemon_storage_system.h b/include/pokemon_storage_system.h index 3c29dd9fd..b54c0cd68 100644 --- a/include/pokemon_storage_system.h +++ b/include/pokemon_storage_system.h @@ -6,6 +6,27 @@ #define TOTAL_BOXES_COUNT 14 #define IN_BOX_COUNT 30 +enum +{ + WALLPAPER_FOREST, + WALLPAPER_CITY, + WALLPAPER_DESERT, + WALLPAPER_SAVANNA, + WALLPAPER_CRAG, + WALLPAPER_VOLCANO, + WALLPAPER_SNOW, + WALLPAPER_CAVE, + WALLPAPER_BEACH, + WALLPAPER_SEAFLOOR, + WALLPAPER_RIVER, + WALLPAPER_SKY, + WALLPAPER_POLKADOT, + WALLPAPER_POKECENTER, + WALLPAPER_MACHINE, + WALLPAPER_PLAIN, + WALLPAPER_COUNT +}; + u8 *GetBoxNamePtr(u8 boxNumber); struct BoxPokemon *GetBoxedMonPtr(u8 boxId, u8 monPosition); void SetBoxMonNickAt(u8 boxId, u8 monPosition, const u8 *newNick); |