diff options
Diffstat (limited to 'Source/3rdParty/SDL2/src/thread/psp/SDL_systhread.c')
-rw-r--r-- | Source/3rdParty/SDL2/src/thread/psp/SDL_systhread.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/3rdParty/SDL2/src/thread/psp/SDL_systhread.c b/Source/3rdParty/SDL2/src/thread/psp/SDL_systhread.c index 9286be5..284f182 100644 --- a/Source/3rdParty/SDL2/src/thread/psp/SDL_systhread.c +++ b/Source/3rdParty/SDL2/src/thread/psp/SDL_systhread.c @@ -97,6 +97,8 @@ int SDL_SYS_SetThreadPriority(SDL_ThreadPriority priority) if (priority == SDL_THREAD_PRIORITY_LOW) { value = 19; } else if (priority == SDL_THREAD_PRIORITY_HIGH) { + value = -10; + } else if (priority == SDL_THREAD_PRIORITY_TIME_CRITICAL) { value = -20; } else { value = 0; |