Remove old tweak that can break the music when restoring now ... Chris, you should check it too :p

svn-id: r9582
This commit is contained in:
Nicolas Bacca 2003-08-06 21:07:59 +00:00
parent d8464534a5
commit 1c1fd05a72
2 changed files with 2 additions and 17 deletions

View file

@ -717,19 +717,7 @@ void Serializer::loadBytes(void *b, int len) {
_saveLoadStream->fread(b, 1, len);
}
#ifdef _WIN32_WCE
// Perhaps not necessary anymore with latest checks
bool Serializer::checkEOFLoadStream() {
if (!_saveLoadStream->fseek(1, SEEK_CUR))
return true;
if (_saveLoadStream->feof())
return true;
_saveLoadStream->fseek(-1, SEEK_CUR);
return false;
}
#elif defined(__PALM_OS__)
#if defined(__PALM_OS__)
bool Serializer::checkEOFLoadStream() {
if (_saveLoadStream->feof())