From 79a95bc1b5efb3deacf6c403fed6b718815b14ff Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 17 Mar 2018 11:45:02 +1000 Subject: [PATCH] Stop disabling WASAPI on older compilers. --- mini_al.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/mini_al.h b/mini_al.h index 74f7fcb5..c87171de 100644 --- a/mini_al.h +++ b/mini_al.h @@ -241,15 +241,6 @@ extern "C" { #define MAL_SUPPORT_WINMM #define MAL_SUPPORT_JACK // JACK is technically supported on Windows, but I don't know how many people use it in practice... #endif - - // Don't support WASAPI on older versions of MSVC for now. - #if defined(_MSC_VER) - #if _MSC_VER < 1600 - #if !defined(__audioclient_h__) - #undef MAL_SUPPORT_WASAPI - #endif - #endif - #endif #endif #if defined(MAL_UNIX) #if defined(MAL_LINUX)