fix bg structs

This commit is contained in:
theo3
2021-02-28 18:48:00 -08:00
parent 082b0c03a3
commit 721c7ede10
13 changed files with 68 additions and 70 deletions
+9 -11
View File
@@ -12,30 +12,28 @@ typedef struct {
typedef struct {
u16 bg0Control;
u16 bg1Control;
u16 bg2Control;
u16 bg3Control;
u16 bg0xOffset;
u16 bg0yOffset;
u16 bg0Updated;
void* bg0Tilemap;
u16 bg1Control;
u16 bg1xOffset;
u16 bg1yOffset;
u16 bg2xOffset;
u16 bg2yOffset;
void* unk_14;
u16 bg1Updated;
void* bg1Tilemap;
} BgSettings;
typedef struct {
u16 bg2Control;
u16 bg2xOffset;
u16 bg2yOffset;
u16 unk;
u16 unk2;
u16 unk3;
u16 bg2Updated;
void* bg2Tilemap;
u16 bg3Control;
s16 bg3xOffset;
s16 bg3yOffset;
u16 unk4;
void* unk5;
u16 bg3Updated;
void* bg3Tilemap;
} BgAffSettings;
typedef struct {