mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
Use of stat() is not portable...
svn-id: r11813
This commit is contained in:
parent
e439eb5129
commit
4fa0d93dfb
@ -353,7 +353,7 @@ void dump_bitmap(const char *filename, byte *offs, int w, int h, int flags, cons
|
||||
|
||||
void SimonEngine::dump_single_bitmap(int file, int image, byte *offs, int w, int h, byte base) {
|
||||
char buf[40];
|
||||
#ifndef __PALM_OS__
|
||||
#if !defined(__PALM_OS__) && !defined(__DC__)
|
||||
struct stat statbuf;
|
||||
#endif
|
||||
|
||||
@ -363,7 +363,7 @@ void SimonEngine::dump_single_bitmap(int file, int image, byte *offs, int w, int
|
||||
sprintf(buf, "dumps/File%d_Image%d.bmp", file, image);
|
||||
#endif
|
||||
|
||||
#ifndef __PALM_OS__
|
||||
#if !defined(__PALM_OS__) && !defined(__DC__)
|
||||
if (stat(buf, &statbuf) == 0)
|
||||
return;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user