mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 10:37:56 -05:00
general: fix compile for Apple Clang
This commit is contained in:
@ -116,7 +116,7 @@ void EmuThread::run() {
|
||||
}
|
||||
} else {
|
||||
std::unique_lock lock{running_mutex};
|
||||
running_cv.wait(lock, stop_token, [this] { return IsRunning(); });
|
||||
Common::CondvarWait(running_cv, lock, stop_token, [&] { return IsRunning(); });
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user