mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 20:07:57 -05:00
Merge pull request #9289 from liamwhite/fruit-company
general: fix compile for Apple Clang
This commit is contained in:
@ -118,7 +118,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