diff options
-rw-r--r-- | backends/midi/mt32/structures.h | 2 | ||||
-rw-r--r-- | backends/midi/mt32/synth.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/midi/mt32/structures.h b/backends/midi/mt32/structures.h index 7caf10cec0..78cf5c1d13 100644 --- a/backends/midi/mt32/structures.h +++ b/backends/midi/mt32/structures.h @@ -57,7 +57,7 @@ static inline void LOG_MSG(char *fmt, ...) fflush(stdout); } -#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW__)) +#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW32__)) #define ALIGN_PACKED diff --git a/backends/midi/mt32/synth.cpp b/backends/midi/mt32/synth.cpp index b9164c77c8..f56bedfcea 100644 --- a/backends/midi/mt32/synth.cpp +++ b/backends/midi/mt32/synth.cpp @@ -230,7 +230,7 @@ void szxform( #ifdef HAVE_X86 -#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW__)) +#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW32__)) bool DetectSIMD() { @@ -760,7 +760,7 @@ section */ iir_filter_type usefilter; -#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW__)) +#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW32__)) float iir_filter_sse(float input,float *hist1_ptr, float *coef_ptr, int revLevel) { float *hist2_ptr; |