In fact, Nicolas, this is no more needed :)

svn-id: r9584
This commit is contained in:
Chris Apers 2003-08-07 14:33:38 +00:00
parent 7d19b48670
commit d910e7b066
2 changed files with 0 additions and 17 deletions

View file

@ -1321,12 +1321,6 @@ int IMuseInternal::save_or_load(Serializer *ser, Scumm *scumm) {
MKEND()
};
#if defined(__PALM_OS__) // previous PalmOS ver. without imuse implementation or not saved(Oopps...forgot it !), is this really working ? will we have sound with old saved game ?
if (!ser->isSaving() && ser->checkEOFLoadStream())
return 0; //palmfixme
#endif
int i;
ser->_ref_me = this;

View file

@ -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);