You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Booleanize various sync primitives' wait & locking methods
This commit is contained in:
@@ -44,7 +44,7 @@ void AudioDriverOpenSL::_buffer_callback(
|
||||
if (pause) {
|
||||
mix = false;
|
||||
} else {
|
||||
mix = mutex.try_lock() == OK;
|
||||
mix = mutex.try_lock();
|
||||
}
|
||||
|
||||
if (mix) {
|
||||
|
||||
Reference in New Issue
Block a user