[Scummvm-cvs-logs] SF.net SVN: scummvm:[40364] scummvm/trunk/sound/softsynth/opl/opl.h

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Wed May 6 22:05:58 CEST 2009


Revision: 40364
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40364&view=rev
Author:   lordhoto
Date:     2009-05-06 20:05:58 +0000 (Wed, 06 May 2009)

Log Message:
-----------
Another attempt at fixing MSVC compiliation. (someone test this please ;-)

Modified Paths:
--------------
    scummvm/trunk/sound/softsynth/opl/opl.h

Modified: scummvm/trunk/sound/softsynth/opl/opl.h
===================================================================
--- scummvm/trunk/sound/softsynth/opl/opl.h	2009-05-06 17:18:38 UTC (rev 40363)
+++ scummvm/trunk/sound/softsynth/opl/opl.h	2009-05-06 20:05:58 UTC (rev 40364)
@@ -30,14 +30,14 @@
 	define Bits, Bitu, Bit32s, Bit32u, Bit16s, Bit16u, Bit8s, Bit8u here
 */
 
-typedef uint	Bitu;
-typedef int		Bits;
-typedef uint32	Bit32u;
-typedef int32	Bit32s;
-typedef uint16	Bit16u;
-typedef int16	Bit16s;
-typedef uint8	Bit8u;
-typedef int8	Bit8s;
+#define Bitu uint
+#define Bits int
+#define Bit32u uint32
+#define Bit32s int32
+#define Bit16u uint16
+#define Bit16s int16
+#define Bit8u uint8
+#define Bit8s int8
 
 #undef NUM_CHANNELS
 #if defined(OPLTYPE_IS_OPL3)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list