From ebeff9e3717b2a457ea95d8d92d6a09c6571d2b3 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 4 Apr 2020 13:16:30 +1000 Subject: [PATCH] Fix Visual Studio 2005 compilation errors. --- extras/speex_resampler/ma_speex_resampler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/speex_resampler/ma_speex_resampler.h b/extras/speex_resampler/ma_speex_resampler.h index 369f4d66..eaeb22d5 100644 --- a/extras/speex_resampler/ma_speex_resampler.h +++ b/extras/speex_resampler/ma_speex_resampler.h @@ -39,7 +39,7 @@ int ma_speex_resampler_get_expected_output_frame_count(SpeexResamplerState* st, #endif #endif #endif - #if defined(_MSC_VER) && _MSC_VER <= 1200 /* 1200 = Visual Studio 6 */ + #if defined(_MSC_VER) && _MSC_VER <= 1400 /* 1400 = Visual Studio 2005 */ #define inline _inline #define MA_SPEEX_INLINE_DEFINED #endif