aboutsummaryrefslogtreecommitdiff
path: root/simon/debug.cpp
diff options
context:
space:
mode:
authorChris Apers2005-11-05 18:51:12 +0000
committerChris Apers2005-11-05 18:51:12 +0000
commit54c47e3985f638caf34eaf432aa19e55fe91a74c (patch)
treea193acdebc490bee2d86c7e20a09f838b82ecccf /simon/debug.cpp
parentaf1cbcde851711b627a1f846383d6a1e92e639f0 (diff)
downloadscummvm-rg350-54c47e3985f638caf34eaf432aa19e55fe91a74c.tar.gz
scummvm-rg350-54c47e3985f638caf34eaf432aa19e55fe91a74c.tar.bz2
scummvm-rg350-54c47e3985f638caf34eaf432aa19e55fe91a74c.zip
PalmOS ifdef
svn-id: r19472
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 bdebea7e9d..749a83d7b0 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(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__)
+#if !defined(PALMOS_MODE) && !defined(__DC__) && !defined(__PSP__)
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(__PALM_OS__) && !defined(__DC__) && !defined(__PSP__)
+#if !defined(PALMOS_MODE) && !defined(__DC__) && !defined(__PSP__)
if (stat(buf, &statbuf) == 0)
return;
#endif