aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/detection.cpp
diff options
context:
space:
mode:
authorMax Horn2008-11-05 15:41:12 +0000
committerMax Horn2008-11-05 15:41:12 +0000
commitfe2935ad4b550afa68977169140267ef2ef4a3da (patch)
treebd442c3ffe15d1dc66c3eb7018e304e697bbedaf /engines/tinsel/detection.cpp
parent79614d28b630e8176dc9692fa4f7b14f8338c2c4 (diff)
downloadscummvm-rg350-fe2935ad4b550afa68977169140267ef2ef4a3da.tar.gz
scummvm-rg350-fe2935ad4b550afa68977169140267ef2ef4a3da.tar.bz2
scummvm-rg350-fe2935ad4b550afa68977169140267ef2ef4a3da.zip
Got rid of the unused 'filename' attribute in SaveStateDescriptor
svn-id: r34905
Diffstat (limited to 'engines/tinsel/detection.cpp')
-rw-r--r--engines/tinsel/detection.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/tinsel/detection.cpp b/engines/tinsel/detection.cpp
index 526d72e4a4..a52a6c9c1e 100644
--- a/engines/tinsel/detection.cpp
+++ b/engines/tinsel/detection.cpp
@@ -359,9 +359,7 @@ SaveStateList TinselMetaEngine::listSaves(const char *target) const {
SaveStateList saveList;
for (int i = 0; i < numStates; i++) {
- SaveStateDescriptor sd(i,
- Tinsel::ListEntry(i, Tinsel::LE_DESC),
- Tinsel::ListEntry(i, Tinsel::LE_NAME));
+ SaveStateDescriptor sd(i, Tinsel::ListEntry(i, Tinsel::LE_DESC));
// TODO: Also add savedFiles[i].dateTime to the SaveStateDescriptor
saveList.push_back(sd);
}