sync HEAD with 0-8-0 branch.

svn-id: r19536
This commit is contained in:
Robert Göffringmann 2005-11-09 20:02:42 +00:00
parent d8e7ad7888
commit ac8af88f83

View File

@ -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