diff options
author | Max Horn | 2008-09-01 20:41:43 +0000 |
---|---|---|
committer | Max Horn | 2008-09-01 20:41:43 +0000 |
commit | f455b15bde81295b2a1453ff0dad0f680b583d76 (patch) | |
tree | 9aff87d2967583213df5d964f358a50500211b66 /engines | |
parent | 898a7f4b2d5d56d7ab0badefd63075689fa2d9a6 (diff) | |
download | scummvm-rg350-f455b15bde81295b2a1453ff0dad0f680b583d76.tar.gz scummvm-rg350-f455b15bde81295b2a1453ff0dad0f680b583d76.tar.bz2 scummvm-rg350-f455b15bde81295b2a1453ff0dad0f680b583d76.zip |
Clarified clarification ;)
svn-id: r34261
Diffstat (limited to 'engines')
-rw-r--r-- | engines/metaengine.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/metaengine.h b/engines/metaengine.h index 615fda155a..1e71a5f179 100644 --- a/engines/metaengine.h +++ b/engines/metaengine.h @@ -99,9 +99,11 @@ public: * Engines which keep an index file will also update it accordingly. * * @param slot slot number of the save state to be removed - * @param saveNames a list of all the save state description names + * + * @todo This method is currently never called. Rather, LauncherDialog::loadGame + * directly calls _saveFileMan->removeSaveFile() if kSupportsDeleteSave is set. */ - virtual void removeSaveState(int slot, Common::StringList saveNames) const {}; + virtual void removeSaveState(int slot) const {}; /** @name MetaEngineFeature flags */ @@ -109,7 +111,7 @@ public: /** * A feature in this context means an ability of the engine which can be - * either available or not. Examples include: + * either available or not. Examples include: * - Supporting the 'Return to launcher' feature (i.e. handles EVENT_RTL) * - Listing Save States (i.e. implements the listSaves() method; * used for --list-saves support) |