From 9c370afe9a070e599d84cfb6dd478ba915dd85a1 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Thu, 14 Apr 2016 21:09:45 +0200 Subject: [PATCH] PSP: Fixed compile error. --- src/thread/psp/SDL_systhread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/psp/SDL_systhread.c b/src/thread/psp/SDL_systhread.c index 96f2e1dc1..c6003b8ed 100644 --- a/src/thread/psp/SDL_systhread.c +++ b/src/thread/psp/SDL_systhread.c @@ -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");