summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2017-06-10 23:37:25 -0500
committercamthesaxman <cameronghall@cox.net>2017-06-10 23:37:25 -0500
commit4c91ef5f49f5f8fb5aff42257807e5480e64dd65 (patch)
tree329fa1e0f6da39a84eee8d89d9c20dcb029e857d /include
parent92ac981c1c0e454a75c0f0f2b2029cd10bd05e6b (diff)
move rom_8094928.c into battle_party_menu.c
Diffstat (limited to 'include')
-rw-r--r--include/battle_party_menu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/battle_party_menu.h b/include/battle_party_menu.h
index b9c3ad707..11752296b 100644
--- a/include/battle_party_menu.h
+++ b/include/battle_party_menu.h
@@ -3,7 +3,8 @@
#include "task.h"
-struct UnknownStruct1
+// TODO: Unify all of the 0x0201B000 structs
+struct Struct201B000
{
u8 filler0[0x259];
u8 unk259;
@@ -33,6 +34,6 @@ extern u8 unk_2000000[];
void SetUpBattlePokemonMenu(u8);
#define EWRAM_1609D unk_2000000[0x1609D]
-#define EWRAM_1B000 (*(struct UnknownStruct1 *)(unk_2000000 + 0x1B000))
+#define EWRAM_1B000 (*(struct Struct201B000 *)(unk_2000000 + 0x1B000))
#endif