Skip to content

Commit c2662e2

Browse files
author
Niko
committed
Real60PS1
1 parent f952bfe commit c2662e2

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

decompile/General/LOAD/LOAD_31_DriverMPK.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,22 @@ void DECOMP_LOAD_DriverMPK(unsigned int param_1,int levelLOD, void (*param_3)(st
189189

190190
else if((gameMode1 & (ADVENTURE_BOSS | RELIC_RACE | TIME_TRIAL)) != 0)
191191
{
192+
#ifdef USE_REAL60PS1
193+
194+
// load 4P MPK of fourth player
195+
lastFileIndexMPK = BI_4PARCADEPACK + data.characterIDs[0];
196+
197+
#else
198+
192199
// high lod model
193200
DECOMP_LOAD_AppendQueue(param_1,LT_DRAM,
194201
BI_RACERMODELHI + data.characterIDs[0],
195202
&data.driverModelExtras[0],(void(*)(struct LoadQueueSlot*))0);
196203

197204
// time trial mpk
198205
lastFileIndexMPK = BI_TIMETRIALPACK + data.characterIDs[1];
206+
207+
#endif
199208
}
200209

201210
else if(

decompile/General/LOAD/LOAD_33_GetBigfileIndex.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ int DECOMP_LOAD_GetBigfileIndex(unsigned int levelID, int lod, int fileType)
88
lod = 1;
99
#endif
1010

11+
#ifdef USE_REAL60PS1
12+
lod = 4;
13+
#endif
14+
1115
if(levelID <= LAB_BASEMENT)
1216
return BI_ARCADETRACKS + levelID*8 + sdata->levBigLodIndex[lod-1] + fileType;
1317

0 commit comments

Comments
 (0)