[Scummvm-cvs-logs] CVS: scummvm/scumm sound.h,1.64,1.65

Chris Apers chrilith at users.sourceforge.net
Fri Apr 16 05:49:00 CEST 2004


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

Modified Files:
	sound.h 
Log Message:
Fixed illegal access to protected/private member on PalmOS (??)

Index: sound.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/sound.h,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- sound.h	10 Apr 2004 00:07:58 -0000	1.64
+++ sound.h	16 Apr 2004 12:47:55 -0000	1.65
@@ -37,7 +37,11 @@
 };
 
 class Sound {
+#ifdef __PALM_OS__
+public:
+#else
 protected:
+#endif
 	enum SoundMode {
 		kVOCMode,
 		kMP3Mode,
@@ -45,6 +49,9 @@
 		kFlacMode
 	};
 
+#ifdef __PALM_OS__
+protected:
+#endif
 	ScummEngine *_vm;
 
 	int16 _soundQuePos, _soundQue[0x100];
@@ -109,4 +116,3 @@
 } // End of namespace Scumm
 
 #endif
-





More information about the Scummvm-git-logs mailing list