Got rid of the unused 'filename' attribute in SaveStateDescriptor

svn-id: r34905
This commit is contained in:
Max Horn 2008-11-05 15:41:12 +00:00
parent 79614d28b6
commit fe2935ad4b
15 changed files with 21 additions and 32 deletions

View file

@ -197,7 +197,7 @@ SaveStateList SagaMetaEngine::listSaves(const char *target) const {
for (int i = 0; i < 3; i++)
in->readUint32BE();
in->read(saveDesc, SAVE_TITLE_SIZE);
saveList.push_back(SaveStateDescriptor(slotNum, saveDesc, *file));
saveList.push_back(SaveStateDescriptor(slotNum, saveDesc));
delete in;
}
}