summaryrefslogtreecommitdiff
path: root/include/map.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/map.h
parent3afbd0e9012be95e687ccb36eb62f6df08cded19 (diff)
Rename managers
Diffstat (limited to 'include/map.h')
-rw-r--r--include/map.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/map.h b/include/map.h
index 8c8adb46..b943ca2e 100644
--- a/include/map.h
+++ b/include/map.h
@@ -2,9 +2,10 @@
#define MAP_H
#include "global.h"
+#include "screen.h"
typedef struct {
- /*0x0000*/ u16* bgControlPtr; // Points to the BgSettings.control field for the bg belonging to this layer?
+ /*0x0000*/ BgSettings* bgSettings;
/*0x0004*/ u16 mapData[0x1000]; // tilemap data? <-- gMapDataTop / gMapDataBottom
/*0x2004*/ u8 collisionData[0x1000]; // more tilemap data? <-- gUnk_0200D654 / gUnk_02027EB4
/*0x3004*/ u16 mapDataClone[0x1000]; // more tilemap data? <-- gUnk_0200E654 / gUnk_02028EB4
@@ -19,4 +20,4 @@ extern LayerStruct gMapBottom;
LayerStruct* GetLayerByIndex(u32);
-#endif // MAP_H \ No newline at end of file
+#endif // MAP_H