Decrease audio thread priority when created

This commit is contained in:
Francisco Javier Trujillo Mata 2022-08-14 12:01:56 +02:00 committed by Ryan C. Gordon
parent cf134235d7
commit 5b4b4fa1ff
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static void PS2AUDIO_ThreadInit(_THIS)
ee_thread_status_t status;
thid = GetThreadId();
if (ReferThreadStatus(GetThreadId(), &status) == 0) {
ChangeThreadPriority(thid, status.current_priority);
ChangeThreadPriority(thid, status.current_priority - 1);
}
}