aboutsummaryrefslogtreecommitdiff
path: root/backends/midi/mt32
diff options
context:
space:
mode:
authorTravis Howell2004-10-22 09:38:11 +0000
committerTravis Howell2004-10-22 09:38:11 +0000
commit3843b6cb022efa6295012d8a651fa0f6bc69be70 (patch)
tree6511cb62828f058e4d75b540d05f2f1496c61b25 /backends/midi/mt32
parentfc210b4d21f6da040a4e24bb1c74593f806d70e4 (diff)
downloadscummvm-rg350-3843b6cb022efa6295012d8a651fa0f6bc69be70.tar.gz
scummvm-rg350-3843b6cb022efa6295012d8a651fa0f6bc69be70.tar.bz2
scummvm-rg350-3843b6cb022efa6295012d8a651fa0f6bc69be70.zip
Correction for mingw compile
svn-id: r15644
Diffstat (limited to 'backends/midi/mt32')
-rw-r--r--backends/midi/mt32/structures.h2
-rw-r--r--backends/midi/mt32/synth.cpp4
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;