mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 07:38:02 -05: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