[Scummvm-cvs-logs] CVS: scummvm/sound fmopl.cpp,1.33,1.34

Chris Apers chrilith at users.sourceforge.net
Wed Oct 12 12:48:21 CEST 2005


Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24109

Modified Files:
	fmopl.cpp 
Log Message:
PalmOS ARM too

Index: fmopl.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/fmopl.cpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- fmopl.cpp	3 Sep 2005 18:05:19 -0000	1.33
+++ fmopl.cpp	12 Oct 2005 19:47:15 -0000	1.34
@@ -34,7 +34,7 @@
 
 #include "common/util.h"
 
-#if defined (_WIN32_WCE)|| defined (__SYMBIAN32__)
+#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_ARM)
 #include "common/config-manager.h"
 #endif
 
@@ -1167,7 +1167,7 @@
 	// We need to emulate one YM3812 chip
 	int env_bits = FMOPL_ENV_BITS_HQ;
 	int eg_ent = FMOPL_EG_ENT_HQ;
-#if defined (_WIN32_WCE)|| defined(__SYMBIAN32__)
+#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_ARM)
 	if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) {
 		env_bits = FMOPL_ENV_BITS_HQ;
 		eg_ent = FMOPL_EG_ENT_HQ;
@@ -1200,4 +1200,3 @@
 	OPLBuildTables(env_bits, eg_ent);
 	return OPLCreate(OPL_TYPE_YM3812, 3579545, rate);
 }
-





More information about the Scummvm-git-logs mailing list