aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Göffringmann2005-11-09 20:02:42 +0000
committerRobert Göffringmann2005-11-09 20:02:42 +0000
commitac8af88f835a058e019b5070ded9d5a1e661660e (patch)
treec7f8ea4c950e870ec872f52d6c91145ae8a2ead3
parentd8e7ad7888c85eb92f57aa130762145a1907902d (diff)
downloadscummvm-rg350-ac8af88f835a058e019b5070ded9d5a1e661660e.tar.gz
scummvm-rg350-ac8af88f835a058e019b5070ded9d5a1e661660e.tar.bz2
scummvm-rg350-ac8af88f835a058e019b5070ded9d5a1e661660e.zip
sync HEAD with 0-8-0 branch.
svn-id: r19536
-rw-r--r--simon/debug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 749a83d7b0..40c105151e 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -356,7 +356,7 @@ static void dump_bitmap(const char *filename, const byte *offs, int w, int h, in
void SimonEngine::dump_single_bitmap(int file, int image, const byte *offs, int w, int h, byte base) {
char buf[40];
-#if !defined(PALMOS_MODE) && !defined(__DC__) && !defined(__PSP__)
+#if !defined(PALMOS_MODE) && !defined(__DC__) && !defined(__PSP__) && !defined(__PLAYSTATION2__)
struct stat statbuf;
#endif
@@ -366,7 +366,7 @@ void SimonEngine::dump_single_bitmap(int file, int image, const byte *offs, int
sprintf(buf, "dumps/File%d_Image%d.bmp", file, image);
#endif
-#if !defined(PALMOS_MODE) && !defined(__DC__) && !defined(__PSP__)
+#if !defined(PALMOS_MODE) && !defined(__DC__) && !defined(__PSP__) && !defined(__PLAYSTATION2__)
if (stat(buf, &statbuf) == 0)
return;
#endif