mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2025-10-30 08:02:29 +00:00
forgot to fix osPfsInitPak_recomp
This commit is contained in:
parent
33228560d5
commit
ece48700a8
1 changed files with 2 additions and 2 deletions
|
|
@ -136,11 +136,11 @@ extern "C" void osPfsInit_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" void osPfsInitPak_recomp(uint8_t* rdram, recomp_context* ctx) {
|
extern "C" void osPfsInitPak_recomp(uint8_t* rdram, recomp_context* ctx) {
|
||||||
OSMesgQueue* queue = _arg<0, OSMesgQueue*>(rdram, ctx);
|
int32_t queue = _arg<0, int32_t>(rdram, ctx);
|
||||||
OSPfs* pfs = _arg<1, OSPfs*>(rdram, ctx);
|
OSPfs* pfs = _arg<1, OSPfs*>(rdram, ctx);
|
||||||
s32 channel = _arg<2, s32>(rdram, ctx);
|
s32 channel = _arg<2, s32>(rdram, ctx);
|
||||||
|
|
||||||
pfs->queue = (int32_t) queue;
|
pfs->queue = queue;
|
||||||
pfs->channel = channel;
|
pfs->channel = channel;
|
||||||
pfs->status = 0x1;
|
pfs->status = 0x1;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue