summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-06-14 22:04:43 -0400
committerGitHub <noreply@github.com>2017-06-14 22:04:43 -0400
commitf22e583db60f3d0c33a3d02509c51c2a861e6abd (patch)
tree8e423242503462b1455facc408d7db90aed123e3 /include
parent817f20d2275d29a2d1976fa2e1281a15b0c45630 (diff)
parent4c91ef5f49f5f8fb5aff42257807e5480e64dd65 (diff)
Merge pull request #321 from camthesaxman/decompile_rom_8094928
decompile rom_8094928
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