mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 17:35:46 +00:00
general: fix compile for Apple Clang
This commit is contained in:
parent
8c78a8f003
commit
5a712bb51a
79 changed files with 952 additions and 37 deletions
|
@ -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(); });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue