mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 13:12:42 +00:00
Fix syntax error in call to ao_play()
This commit is contained in:
parent
e58731ee01
commit
e60c41be9f
@ -88,7 +88,7 @@ void AudioDriverAO::thread_func(void* p_udata) {
|
|||||||
if (ad->exit_thread)
|
if (ad->exit_thread)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (!ao_play(ad->device, reinterpret_cast<char*>(samples_out), n_bytes) {
|
if (!ao_play(ad->device, reinterpret_cast<char*>(samples_out), n_bytes)) {
|
||||||
ERR_PRINT("ao_play() failed");
|
ERR_PRINT("ao_play() failed");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user