summaryrefslogtreecommitdiff
path: root/include/main.h
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2022-05-01 11:43:19 +0200
committeroctorock <79596758+octorock@users.noreply.github.com>2022-05-18 13:07:06 +0200
commit60e33b636d7b9dca767b3833ee39affcc626f420 (patch)
tree51d7752fb76f5044028c56404f75c780783d8002 /include/main.h
parent3afbd0e9012be95e687ccb36eb62f6df08cded19 (diff)
Rename managers
Diffstat (limited to 'include/main.h')
-rw-r--r--include/main.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/main.h b/include/main.h
index 134ca8e0..3017b9ab 100644
--- a/include/main.h
+++ b/include/main.h
@@ -5,6 +5,7 @@
#include "structures.h"
#include "room.h"
#include "script.h"
+#include "screen.h"
/** File signature */
#define SIGNATURE 'MCZ3'
@@ -86,8 +87,8 @@ typedef struct {
/*0x00E*/ u8 unk_e;
/*0x00F*/ u8 unk_f;
/*0x010*/ void** currentRoomProperties;
- /*0x014*/ u16* mapBottomBgControlPtr;
- /*0x018*/ u16* mapTopBgControlPtr;
+ /*0x014*/ BgSettings* mapBottomBgSettings;
+ /*0x018*/ BgSettings* mapTopBgSettings;
/*0x01C*/ RoomControls roomControls;
/*0x054*/ GfxSlotList gfxSlotList;
/*0x268*/ Palette palettes[0x10];
@@ -126,7 +127,7 @@ void DoSoftReset(void);
*/
void SetSleepMode(void);
-extern void sub_0805622C(void* a1, u32 a2, u32 a3);
+extern void sub_0805622C(struct BgAffineDstData* a1, u32 a2, u32 a3);
extern void sub_08056208(void);
extern void ResetPalettes(void);
extern void VBlankIntrWait();
@@ -151,7 +152,9 @@ extern void DemoTask(void);
#endif
/// @}
-extern u8 gUnk_03003DE4;
+extern u8 gUnk_03003DE4[0xC];
extern u16 gPaletteBuffer[];
-#endif
+extern u32 CheckRegionsOnScreen(const u16* arr);
+
+#endif // MAIN_H