diff options
author | Christopher Page | 2008-08-15 18:26:59 +0000 |
---|---|---|
committer | Christopher Page | 2008-08-15 18:26:59 +0000 |
commit | ad5b550df8d428a0e7b94e681c63d73422620adc (patch) | |
tree | 62feb4684a18fd2face7bd3176fa1fe72b91d5ab /gui | |
parent | 9d3cdcb2da64ae3afdcd19f1ea18a917f9318190 (diff) | |
download | scummvm-rg350-ad5b550df8d428a0e7b94e681c63d73422620adc.tar.gz scummvm-rg350-ad5b550df8d428a0e7b94e681c63d73422620adc.tar.bz2 scummvm-rg350-ad5b550df8d428a0e7b94e681c63d73422620adc.zip |
Small correction for last commit
svn-id: r33910
Diffstat (limited to 'gui')
-rw-r--r-- | gui/launcher.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 733ecc4275..6af9791810 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -955,7 +955,9 @@ void LauncherDialog::loadGame(int item) { if (plugin) { bool delSupport = (*plugin)->hasFeature(MetaEngine::kSupportsDeleteSave); - if ((*plugin)->hasFeature(MetaEngine::kSupportsListSaves)) { + if ((*plugin)->hasFeature(MetaEngine::kSupportsListSaves) && + (*plugin)->hasFeature(MetaEngine::kSupportsDirectLoad)) + { do { Common::StringList saveNames = generateSavegameList(item, plugin); _loadDialog->setList(saveNames); |