mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-19 22:22:40 +00:00
Core: Address Feedback
This commit is contained in:
committed by
FernandoS27
parent
1e6f8aba04
commit
2bc949628d
@@ -57,7 +57,7 @@ bool ServerSession::IsSignaled() const {
|
||||
}
|
||||
|
||||
// Wait if we have no pending requests, or if we're currently handling a request.
|
||||
return !(pending_requesting_threads.empty() || currently_handling != nullptr);
|
||||
return !pending_requesting_threads.empty() && currently_handling == nullptr;
|
||||
}
|
||||
|
||||
void ServerSession::Acquire(Thread* thread) {
|
||||
|
||||
Reference in New Issue
Block a user