switch: revert thread priority back to 0x1C as it's faster

This commit is contained in:
cpasjuste 2018-06-28 11:26:28 +02:00 committed by Dave Murphy
parent 26a79e4d1c
commit 20c0dad801
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ int SDL_SYS_SetThreadPriority(SDL_ThreadPriority priority)
value = 0x2D;
}
else if (priority == SDL_THREAD_PRIORITY_HIGH) {
value = 0x2B;
value = 0x1C;
}
svcSetThreadPriority(CUR_THREAD_HANDLE, value);