early-access version 3827

This commit is contained in:
pineappleEA
2023-08-22 00:11:06 +02:00
parent 1d8654a60d
commit af2061a2c2
14 changed files with 82 additions and 26 deletions

View File

@@ -79,8 +79,8 @@ protected:
using HandlerFnP = void (Self::*)(HLERequestContext&);
/// Used to gain exclusive access to the service members, e.g. from CoreTiming thread.
[[nodiscard]] std::scoped_lock<std::mutex> LockService() {
return std::scoped_lock{lock_service};
[[nodiscard]] virtual std::unique_lock<std::mutex> LockService() {
return std::unique_lock{lock_service};
}
/// System context that the service operates under.