Skip to content

Commit

Permalink
PSP: Fixed compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Apr 14, 2016
1 parent caf152d commit 72dc878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thread/psp/SDL_systhread.c
Expand Up @@ -53,7 +53,7 @@ int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
}

thread->handle = sceKernelCreateThread(thread->name, ThreadEntry,
priority, thread->stacksize ? ((int) stacksize) : 0x8000,
priority, thread->stacksize ? ((int) thread->stacksize) : 0x8000,
PSP_THREAD_ATTR_VFPU, NULL);
if (thread->handle < 0) {
return SDL_SetError("sceKernelCreateThread() failed");
Expand Down

0 comments on commit 72dc878

Please sign in to comment.