Skip to content

Commit

Permalink
DREAMWEB: Only request actual save slots in listSaves.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schickel committed Jan 26, 2016
1 parent 7a7c783 commit 6af2e85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/dreamweb/detection.cpp
Expand Up @@ -127,7 +127,7 @@ bool DreamWebMetaEngine::createInstance(OSystem *syst, Engine **engine, const AD

SaveStateList DreamWebMetaEngine::listSaves(const char *target) const {
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
Common::StringArray files = saveFileMan->listSavefiles("DREAMWEB.D??");
Common::StringArray files = saveFileMan->listSavefiles("DREAMWEB.D##");
Common::sort(files.begin(), files.end());

SaveStateList saveList;
Expand Down

0 comments on commit 6af2e85

Please sign in to comment.