aboutsummaryrefslogtreecommitdiff
path: root/common/savefile.h
diff options
context:
space:
mode:
authorMax Horn2003-04-30 12:43:56 +0000
committerMax Horn2003-04-30 12:43:56 +0000
commit81c3ade33193a226cc835d2e1dc905732923bff0 (patch)
treea60f57b6086a2c27f65b9651e30c2602fa0355c3 /common/savefile.h
parent42f156ddada4c6f51e1612e9b0f18ec7c9dd9cee (diff)
downloadscummvm-rg350-81c3ade33193a226cc835d2e1dc905732923bff0.tar.gz
scummvm-rg350-81c3ade33193a226cc835d2e1dc905732923bff0.tar.bz2
scummvm-rg350-81c3ade33193a226cc835d2e1dc905732923bff0.zip
more PalmOS changes
svn-id: r7220
Diffstat (limited to 'common/savefile.h')
-rw-r--r--common/savefile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/savefile.h b/common/savefile.h
index 2770ed1702..37dc08ced4 100644
--- a/common/savefile.h
+++ b/common/savefile.h
@@ -35,6 +35,8 @@ public:
//Should go away. See scumm/saveload.cpp and scumm/imuse.cpp
virtual int fseek(long offs, int whence) = 0;
virtual int feof() = 0;
+#elif defined(__PALM_OS__)
+ virtual int feof() = 0;
#endif
};
@@ -60,6 +62,9 @@ public:
{ return ::fseek(fh, offs, whence); }
int feof()
{ return ::feof(fh); }
+#elif defined(__PALM_OS__)
+ int feof()
+ { return ::feof(fh); }
#endif
};