mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
Fix --disable-audiomixer
This commit is contained in:
parent
28e88c95ec
commit
49fb0d7909
@ -4456,11 +4456,15 @@ finish:
|
||||
|
||||
bool is_ai_service_speech_running(void)
|
||||
{
|
||||
#ifdef HAVE_AUDIOMIXER
|
||||
enum audio_mixer_state res = audio_driver_mixer_get_stream_state(10);
|
||||
RARCH_LOG("TTT %d\n", res);
|
||||
if (res == AUDIO_STREAM_STATE_NONE || res == AUDIO_STREAM_STATE_STOPPED)
|
||||
return false;
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
bool ai_service_speech_stop(void)
|
||||
|
Loading…
Reference in New Issue
Block a user