Merge pull request #3080 from citra-emu/Subv-ReleaseMutex-Return

Kernel/Mutex: Add a missing return in Mutex::Release
master
Weiyi Wang 2017-11-06 14:06:53 +07:00 committed by GitHub
commit 1300c96995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

@ -88,6 +88,8 @@ ResultCode Mutex::Release(Thread* thread) {
WakeupAllWaitingThreads();
Core::System::GetInstance().PrepareReschedule();
}
return RESULT_SUCCESS;
}
void Mutex::AddWaitingThread(SharedPtr<Thread> thread) {