mirror of https://github.com/mgba-emu/mgba.git
Switch: Fix build on libnx 3.0.0
This commit is contained in:
parent
95e1dd9c35
commit
5a543b2a64
|
@ -64,7 +64,7 @@ static inline int ThreadCreate(Thread* thread, ThreadEntry entry, void* context)
|
|||
if (!entry || !thread) {
|
||||
return 1;
|
||||
}
|
||||
int res = threadCreate(thread, entry, context, 0x8000, 0x3B, 1);
|
||||
int res = threadCreate(thread, entry, context, NULL, 0x8000, 0x3B, 1);
|
||||
if(R_FAILED(res)) {
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue