Document mgInfoTbl more

This commit is contained in:
gamemasterplc 2024-02-03 13:40:58 -06:00
parent 828ad3ba56
commit a19c0433de
6 changed files with 597 additions and 665 deletions

View file

@ -21,7 +21,7 @@ typedef struct system_state {
u16 bonus_star : 1;
u16 explain_mg : 1;
u16 show_com_mg : 1;
u16 mg_type : 2;
u16 mg_list : 2;
u16 mess_speed : 2;
u16 save_mode : 2;
};
@ -45,7 +45,7 @@ typedef struct system_state {
};
/* 0x32 */ s8 unk_32;
/* 0x34 */ u16 mg_next;
/* 0x36 */ s16 mg_next_extra;
/* 0x36 */ s16 mg_next_type;
/* 0x38 */ u16 unk_38;
/* 0x3A */ u8 flag[3][16];
/* 0x6A */ u8 unk_6A[0x72];
@ -157,9 +157,9 @@ static inline s32 GWLanguageGet(void)
return GWGameStat.language;
}
static inline s32 GWMGTypeGet(void)
static inline s32 GWMGListGet(void)
{
return GWSystem.mg_type;
return GWSystem.mg_list;
}
static inline s32 GWMessSpeedGet(void)