diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-01-06 16:19:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-06 16:19:18 -0500 |
commit | e70a084aa964a0df94c609ebfa9717089dd67639 (patch) | |
tree | 996dc1a413c8818d6efb746ecf15c3fae28b983e /include/global.h | |
parent | 103789770b635610ee1c04ed923fdcc7298f878e (diff) | |
parent | 1581631e6286e0ec8178630433e8c15cd7076ead (diff) |
Merge pull request #38 from PikalaxALT/scrcmd
scrcmd
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index 858d95831..f418ff757 100644 --- a/include/global.h +++ b/include/global.h @@ -709,6 +709,21 @@ struct MEventBuffers /*0x344 0x3464*/ u32 unk_344[2][5]; }; // 0x36C 0x348C +struct TrainerTowerLog +{ + u32 unk0; + u32 unk4; + u8 unk8; + u8 unk9; + u8 unkA_0:1; + u8 unkA_1:1; + u8 unkA_2:1; + u8 unkA_3:1; + u8 unkA_4:1; + u8 unkA_5:1; + u8 unkA_6:2; +}; + struct SaveBlock1 { /*0x0000*/ struct Coords16 pos; @@ -766,7 +781,7 @@ struct SaveBlock1 /*0x3A54*/ struct FameCheckerSaveData fameChecker[NUM_FAMECHECKER_PERSONS]; /*0x3A94*/ u8 filler3A94[0x2A0]; /*0x3D34*/ u32 unkArrayIdx; - /*0x3D38*/ u32 unkArray[4][3]; + /*0x3D38*/ struct TrainerTowerLog unkArray[4]; }; extern struct SaveBlock1* gSaveBlock1Ptr; |