diff options
author | Chris Apers | 2003-08-07 14:52:04 +0000 |
---|---|---|
committer | Chris Apers | 2003-08-07 14:52:04 +0000 |
commit | 88d7a918a348815a1504b4dcbe0d3b8b6eb1f07b (patch) | |
tree | e1ab21d480fe73ad3df4e4b71713cafc7d7fffa8 /common | |
parent | 0d71a7db1bc6247af8c2aa2811c77ccaa510a1ce (diff) | |
download | scummvm-rg350-88d7a918a348815a1504b4dcbe0d3b8b6eb1f07b.tar.gz scummvm-rg350-88d7a918a348815a1504b4dcbe0d3b8b6eb1f07b.tar.bz2 scummvm-rg350-88d7a918a348815a1504b4dcbe0d3b8b6eb1f07b.zip |
No more needed ... Arisme, your turn
svn-id: r9586
Diffstat (limited to 'common')
-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 |