[Scummvm-cvs-logs] CVS: scummvm/backends/midi/mt32 structures.h,1.1,1.2 synth.cpp,1.2,1.3

Travis Howell kirben at users.sourceforge.net
Fri Oct 22 02:58:41 CEST 2004


Update of /cvsroot/scummvm/scummvm/backends/midi/mt32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25778/backends/midi/mt32

Modified Files:
	structures.h synth.cpp 
Log Message:

Correction for mingw compile


Index: structures.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/midi/mt32/structures.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- structures.h	21 Oct 2004 22:37:30 -0000	1.1
+++ structures.h	22 Oct 2004 09:38:11 -0000	1.2
@@ -57,7 +57,7 @@
 	fflush(stdout);
 }
 
-#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW__))
+#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW32__))
 
 #define ALIGN_PACKED
 

Index: synth.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/midi/mt32/synth.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- synth.cpp	21 Oct 2004 23:03:09 -0000	1.2
+++ synth.cpp	22 Oct 2004 09:38:11 -0000	1.3
@@ -230,7 +230,7 @@
 
 
 #ifdef HAVE_X86
-#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW__))
+#if defined(WIN32) && !(defined(__CYGWIN__) || defined(__MINGW32__))
 bool DetectSIMD()
 {
 
@@ -760,7 +760,7 @@
 
 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;





More information about the Scummvm-git-logs mailing list