diff options
author | Meowsy <Meowsy@users.noreply.github.com> | 2018-12-10 15:49:33 -0500 |
---|---|---|
committer | Meowsy <Meowsy@users.noreply.github.com> | 2018-12-10 15:49:33 -0500 |
commit | 68017b531a47bce7c125eea617a701a89013c983 (patch) | |
tree | df79ed91a9eb985eb6bf9f0f8636175bad9f341d /include/global.h | |
parent | 58ca87acccb91e5d439f3af632a2f218f31937d1 (diff) |
Rename UnknownPokemonStruct to BattleTowerPokemon.
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/global.h b/include/global.h index 33a31bf4d..97625c890 100644 --- a/include/global.h +++ b/include/global.h @@ -301,7 +301,7 @@ struct Apprentice u32 checksum; }; -struct UnknownPokemonStruct +struct BattleTowerPokemon { u16 species; u16 heldItem; @@ -338,7 +338,7 @@ struct EmeraldBattleTowerRecord /*0x10*/ u16 greeting[6]; /*0x1C*/ u16 speechWon[6]; /*0x28*/ u16 speechLost[6]; - /*0x34*/ struct UnknownPokemonStruct party[4]; + /*0x34*/ struct BattleTowerPokemon party[4]; /*0xE4*/ u8 language; /*0xE8*/ u32 checksum; }; @@ -353,7 +353,7 @@ struct BattleTowerEReaderTrainer /*0x10*/ u16 greeting[6]; /*0x1C*/ u16 farewellPlayerLost[6]; /*0x28*/ u16 farewellPlayerWon[6]; - /*0x34*/ struct UnknownPokemonStruct party[3]; + /*0x34*/ struct BattleTowerPokemon party[3]; /*0xB8*/ u32 checksum; }; |