mirror of
https://git.tardis.systems/mirrors/yuzu
synced 2025-06-18 15:15:48 +02:00
Kernel/Semaphore: Small style change
This commit is contained in:
parent
effb181888
commit
ea95876431
@ -34,7 +34,7 @@ public:
|
||||
}
|
||||
|
||||
ResultVal<bool> WaitSynchronization() override {
|
||||
bool wait = available_count == 0;
|
||||
bool wait = !IsAvailable();
|
||||
|
||||
if (wait) {
|
||||
Kernel::WaitCurrentThread(WAITTYPE_SEMA, GetHandle());
|
||||
|
Loading…
Reference in New Issue
Block a user