summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorAnton Yabchinskiy <arn@bestmx.ru>2014-11-22 17:49:51 +0300
committerAnton Yabchinskiy <arn@bestmx.ru>2014-11-22 17:49:51 +0300
commite60c41be9fa6c3123fb089431d46cd08f3c2a714 (patch)
treef3678fdee890d720ddd52df71ad7e0ecc736927c /drivers
parente58731ee0146be1ccc365ff0e6dadafcdacb0c0e (diff)
Fix syntax error in call to ao_play()
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ao/audio_driver_ao.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ao/audio_driver_ao.cpp b/drivers/ao/audio_driver_ao.cpp
index 3c4aa454e7..d9f12ad92f 100644
--- a/drivers/ao/audio_driver_ao.cpp
+++ b/drivers/ao/audio_driver_ao.cpp
@@ -88,7 +88,7 @@ void AudioDriverAO::thread_func(void* p_udata) {
if (ad->exit_thread)
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");
}
};