diff options
-rw-r--r-- | system/settings/win10.xml | 2 | ||||
-rw-r--r-- | xbmc/windowing/win10/WinSystemWin10.cpp | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/system/settings/win10.xml b/system/settings/win10.xml index be6ebd4dd1..c735691888 100644 --- a/system/settings/win10.xml +++ b/system/settings/win10.xml @@ -26,7 +26,7 @@ <group id="3"> <setting id="audiooutput.passthroughdevice"> <level>1</level> - <default>XAUDIO:default</default> + <default>WASAPI:default</default> </setting> </group> </category> diff --git a/xbmc/windowing/win10/WinSystemWin10.cpp b/xbmc/windowing/win10/WinSystemWin10.cpp index 2cd0211a6f..eb835c47cc 100644 --- a/xbmc/windowing/win10/WinSystemWin10.cpp +++ b/xbmc/windowing/win10/WinSystemWin10.cpp @@ -58,12 +58,8 @@ CWinSystemWin10::CWinSystemWin10() AE::CAESinkFactory::ClearSinks(); CAESinkXAudio::Register(); + CAESinkWASAPI::Register(); CScreenshotSurfaceWindows::Register(); - - if (CSysInfo::GetWindowsDeviceFamily() == CSysInfo::WindowsDeviceFamily::Desktop) - { - CAESinkWASAPI::Register(); - } } CWinSystemWin10::~CWinSystemWin10() |