PSP: Fixed compile error.
This commit is contained in:
parent
41093fdbd8
commit
9c370afe9a
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
|
||||||
}
|
}
|
||||||
|
|
||||||
thread->handle = sceKernelCreateThread(thread->name, ThreadEntry,
|
thread->handle = sceKernelCreateThread(thread->name, ThreadEntry,
|
||||||
priority, thread->stacksize ? ((int) stacksize) : 0x8000,
|
priority, thread->stacksize ? ((int) thread->stacksize) : 0x8000,
|
||||||
PSP_THREAD_ATTR_VFPU, NULL);
|
PSP_THREAD_ATTR_VFPU, NULL);
|
||||||
if (thread->handle < 0) {
|
if (thread->handle < 0) {
|
||||||
return SDL_SetError("sceKernelCreateThread() failed");
|
return SDL_SetError("sceKernelCreateThread() failed");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue