From cef0e2a0e7e252f2ab1a807e026ed7f9dca4938e Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Tue, 27 Jan 2015 22:22:48 -0500 Subject: [PATCH] Default to WASAPI until I can fix some DirectSound related issues. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ced47f1..66dfae3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,8 +65,8 @@ IF (WIN32) # Audio device selection is not mandatory, dummy audio device is used if none are compiled in. # Can also compile support for more than one simultaneously. - set(USE_AUDIO_DS ON CACHE BOOL "Include support for DirectSound") - set(USE_AUDIO_WASAPI OFF CACHE BOOL "Include support for WASAPI Audio") + set(USE_AUDIO_DS OFF CACHE BOOL "Include support for DirectSound") + set(USE_AUDIO_WASAPI ON CACHE BOOL "Include support for WASAPI Audio") # TODO: # set(USE_AUDIO_ASIO OFF CACHE BOOL "Include support for ASIO Audio")