From 127a2d0820f5d09523d71af41f903c731fff9d04 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Fri, 24 Jul 2015 21:20:56 -0700 Subject: [PATCH] PSP2: Update threading.h for newer SDK --- src/platform/psp2/threading.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/psp2/threading.h b/src/platform/psp2/threading.h index 972036c3e..b3f7c9d5d 100644 --- a/src/platform/psp2/threading.h +++ b/src/platform/psp2/threading.h @@ -127,7 +127,7 @@ static inline int ThreadCreate(Thread* thread, ThreadEntry entry, void* context) } static inline int ThreadJoin(Thread thread) { - return sceKernelWaitThreadEnd(thread, 0); + return sceKernelWaitThreadEnd(thread, 0, 0); } static inline int ThreadSetName(const char* name) {