aboutsummaryrefslogtreecommitdiff
path: root/simon/debug.cpp
diff options
context:
space:
mode:
authorJoost Peters2005-08-16 17:15:37 +0000
committerJoost Peters2005-08-16 17:15:37 +0000
commitbc394b6ea3468b5d84294f1dfc9ad23e87333281 (patch)
tree0ca64021186b44889c8b5251da2aa4616b008acd /simon/debug.cpp
parent8cbdf0e6295fd31b2a355fdb4c7bdc84176c1b48 (diff)
downloadscummvm-rg350-bc394b6ea3468b5d84294f1dfc9ad23e87333281.tar.gz
scummvm-rg350-bc394b6ea3468b5d84294f1dfc9ad23e87333281.tar.bz2
scummvm-rg350-bc394b6ea3468b5d84294f1dfc9ad23e87333281.zip
Added: PSP backend
svn-id: r18696
Diffstat (limited to 'simon/debug.cpp')
-rw-r--r--simon/debug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 4359d6c72a..1cd466eddc 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -353,7 +353,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(__PALM_OS__) && !defined(__DC__)
+#if !defined(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__)
struct stat statbuf;
#endif
@@ -363,7 +363,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(__PALM_OS__) && !defined(__DC__)
+#if !defined(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__)
if (stat(buf, &statbuf) == 0)
return;
#endif