Commit 189d3c16f5e42419e71f0fa6d19f03e6ad3e5711

Ivan Epifanov 2021-01-20T23:41:35

FIFO is default (and not defined in vitasdk, ugh)

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/thread/vita/SDL_sysmutex.c b/src/thread/vita/SDL_sysmutex.c
index f918537..eae0da8 100644
--- a/src/thread/vita/SDL_sysmutex.c
+++ b/src/thread/vita/SDL_sysmutex.c
@@ -44,7 +44,7 @@ SDL_CreateMutex(void)
     if (mutex) {
 
         mutex->uid =  sceKernelCreateMutex("SDL mutex",
-            SCE_KERNEL_MUTEX_ATTR_TH_PRIO |  SCE_KERNEL_MUTEX_ATTR_RECURSIVE,
+            SCE_KERNEL_MUTEX_ATTR_RECURSIVE,
             0,
             NULL
         );