1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-05 09:00:07 +00:00

Kernel/Mutex: Add a missing return in Mutex::Release

Fixes a regression in .
Closes 
This commit is contained in:
Sebastian Valle 2017-11-05 21:31:22 -05:00 committed by GitHub
parent 8ba2de1580
commit ff17773c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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