diff options
Diffstat (limited to 'common/savefile.h')
-rw-r--r-- | common/savefile.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/common/savefile.h b/common/savefile.h index aba4a204e8..45ef220f6f 100644 --- a/common/savefile.h +++ b/common/savefile.h @@ -35,8 +35,6 @@ 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 }; @@ -62,9 +60,6 @@ public: { return ::fseek(fh, offs, whence); } int feof() { return ::feof(fh); } -#elif defined(__PALM_OS__) - int feof() - { return ::feof(fh); } #endif }; @@ -89,4 +84,4 @@ public: }; -#endif +#endif
\ No newline at end of file |