Gamework struct labeling (#563)
* Label most of w01Dll * Add symbols for instdll and resultdll in us * Fix pal symbols for instDll * Build resultdll+symbols for pal * Gamework struct labeling
This commit is contained in:
parent
560a592518
commit
64f087c2c9
16 changed files with 46 additions and 56 deletions
|
|
@ -619,7 +619,7 @@ static void CreateBoard(void)
|
|||
s32 guest_status;
|
||||
|
||||
GWSystem.mg_next = -1;
|
||||
if(!GWGameStat.field10E_bit5 && GWMGListGet() == 2) {
|
||||
if(!GWGameStat.customPackEnable && GWMGListGet() == 2) {
|
||||
GWMGListSet(0);
|
||||
}
|
||||
GWMessSpeedSet(GWMessSpeedGet());
|
||||
|
|
|
|||
|
|
@ -905,7 +905,7 @@ static void ChangeDiffPadConfig(omObjData *arg0, ConfigWork *arg1) {
|
|||
var_r30 |= 2;
|
||||
}
|
||||
temp_r29 = CheckPort(arg1->unk04);
|
||||
if (GWGameStat.field10E_bit4 != 0) {
|
||||
if (GWGameStat.veryHardUnlock != 0) {
|
||||
var_r27 = 4;
|
||||
} else {
|
||||
var_r27 = 3;
|
||||
|
|
@ -962,7 +962,7 @@ static void ChangeDiffPadConfig(omObjData *arg0, ConfigWork *arg1) {
|
|||
arg1->unk09 = 0;
|
||||
}
|
||||
arg1->unk05 += var_r28;
|
||||
if (GWGameStat.field10E_bit4 == 0 && arg1->unk05 == 4) {
|
||||
if (GWGameStat.veryHardUnlock == 0 && arg1->unk05 == 4) {
|
||||
arg1->unk05 += var_r28;
|
||||
}
|
||||
if (arg1->unk05 > var_r27) {
|
||||
|
|
@ -1100,7 +1100,7 @@ static s32 UpdatePauseBoxExt(omObjData *arg0, ConfigWork *arg1, s32 arg2) {
|
|||
u32 temp_r28;
|
||||
Mtx sp8;
|
||||
|
||||
if (arg2 == 3 && GWGameStat.field10E_bit5 == 0) {
|
||||
if (arg2 == 3 && GWGameStat.customPackEnable == 0) {
|
||||
var_r27 = 1;
|
||||
} else {
|
||||
var_r27 = 2;
|
||||
|
|
|
|||
|
|
@ -112,9 +112,9 @@ static inline void ResetFlag(GameStat *game_stat)
|
|||
game_stat->story_continue = 0;
|
||||
game_stat->party_continue = 0;
|
||||
game_stat->open_w06 = 0;
|
||||
game_stat->field10E_bit4 = 0;
|
||||
game_stat->field10E_bit5 = 0;
|
||||
game_stat->field10E_bit6 = 0;
|
||||
game_stat->veryHardUnlock = 0;
|
||||
game_stat->customPackEnable = 0;
|
||||
game_stat->musicAllF = 0;
|
||||
}
|
||||
|
||||
static inline void ResetPauseConfig(GameStat *game_stat)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue