[Scummvm-cvs-logs] CVS: scummvm/sound mixer.cpp,1.68,1.69

Chris Apers chrilith at users.sourceforge.net
Sat Jul 12 10:44:12 CEST 2003


Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1:/tmp/cvs-serv10093

Modified Files:
	mixer.cpp 
Log Message:
Fixed RTTI warnings with PalmOS port

Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- mixer.cpp	12 Jul 2003 11:33:13 -0000	1.68
+++ mixer.cpp	12 Jul 2003 17:43:39 -0000	1.69
@@ -192,7 +192,7 @@
 	StackLock lock(_mutex);
 
 	ChannelStream *chan;
-#ifndef _WIN32_WCE
+#if !defined(_WIN32_WCE) && !defined(__PALM_OS__)
 	chan = dynamic_cast<ChannelStream *>(_channels[index]);
 #else
 	chan = (ChannelStream*)_channels[index];
@@ -208,7 +208,7 @@
 	StackLock lock(_mutex);
 
 	ChannelStream *chan;
-#ifndef _WIN32_WCE
+#if !defined(_WIN32_WCE) && !defined(__PALM_OS__)
 	chan = dynamic_cast<ChannelStream *>(_channels[index]);
 #else
 	chan = (ChannelStream*)_channels[index];





More information about the Scummvm-git-logs mailing list