aboutsummaryrefslogtreecommitdiff
path: root/scumm/saveload.cpp
diff options
context:
space:
mode:
authorChris Apers2003-08-07 14:33:38 +0000
committerChris Apers2003-08-07 14:33:38 +0000
commitd910e7b06669f4ce41ac5199f83682cb43b20ba8 (patch)
tree9cf132c0bd5331ce3958e8acf14e4d02145c7515 /scumm/saveload.cpp
parent7d19b486709a0fe940dbb903cf65388702086106 (diff)
downloadscummvm-rg350-d910e7b06669f4ce41ac5199f83682cb43b20ba8.tar.gz
scummvm-rg350-d910e7b06669f4ce41ac5199f83682cb43b20ba8.tar.bz2
scummvm-rg350-d910e7b06669f4ce41ac5199f83682cb43b20ba8.zip
In fact, Nicolas, this is no more needed :)
svn-id: r9584
Diffstat (limited to 'scumm/saveload.cpp')
-rw-r--r--scumm/saveload.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index f42e6604ba..56eb2fb39e 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -717,17 +717,6 @@ void Serializer::loadBytes(void *b, int len) {
_saveLoadStream->fread(b, 1, len);
}
-#if defined(__PALM_OS__)
-bool Serializer::checkEOFLoadStream() {
-
- if (_saveLoadStream->feof())
- return true;
-
- return false;
-}
-#endif
-
-
void Serializer::saveUint32(uint32 d) {
uint32 e = FROM_LE_32(d);
saveBytes(&e, 4);