From 54c47e3985f638caf34eaf432aa19e55fe91a74c Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Sat, 5 Nov 2005 18:51:12 +0000 Subject: PalmOS ifdef svn-id: r19472 --- simon/debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'simon/debug.cpp') 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 -- cgit v1.2.3