[Scummvm-cvs-logs] CVS: scummvm/simon debug.cpp,1.43.2.1,1.43.2.2

Robert Göffringmann lavosspawn at users.sourceforge.net
Tue Oct 25 00:01:51 CEST 2005


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

Modified Files:
      Tag: branch-0-8-0
	debug.cpp 
Log Message:
#ifdef'ed some code for the ps2.

Index: debug.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/debug.cpp,v
retrieving revision 1.43.2.1
retrieving revision 1.43.2.2
diff -u -d -r1.43.2.1 -r1.43.2.2
--- debug.cpp	18 Oct 2005 02:11:25 -0000	1.43.2.1
+++ debug.cpp	25 Oct 2005 06:58:56 -0000	1.43.2.2
@@ -356,7 +356,7 @@
 
 void SimonEngine::dump_single_bitmap(int file, int image, const byte *offs, int w, int h, byte base) {
 	char buf[40];
-#if !defined(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__)
+#if !defined(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__) && !defined(__PLAYSTATION2__)
 	struct stat statbuf;
 #endif
 
@@ -366,7 +366,7 @@
 	sprintf(buf, "dumps/File%d_Image%d.bmp", file, image);
 #endif
 
-#if !defined(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__)
+#if !defined(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__) && !defined(__PLAYSTATION2__)
 	if (stat(buf, &statbuf) == 0)
 		return;
 #endif





More information about the Scummvm-git-logs mailing list