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

@ -2184,7 +2184,7 @@ SaveStateList AgiMetaEngine::listSaves(const char *target) const {
uint32 type = in->readUint32BE();
if (type == AGIflag)
in->read(saveDesc, 31);
saveList.push_back(SaveStateDescriptor(slotNum, Common::String(saveDesc), *file));
saveList.push_back(SaveStateDescriptor(slotNum, saveDesc));
delete in;
}
}