소스 검색

Fix syntax error in call to ao_play()

Anton Yabchinskiy 10 년 전
부모
커밋
e60c41be9f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/ao/audio_driver_ao.cpp

+ 1 - 1
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");
 		}
 	};