diff options
author | Strangerke | 2011-10-24 04:31:39 +0200 |
---|---|---|
committer | Strangerke | 2011-10-24 04:31:39 +0200 |
commit | 829df06599e020759bda5f157cd31184318af3ce (patch) | |
tree | f713252a38fa87a6732529b552306632505537c9 /engines/sword1 | |
parent | b071ee4623b9b8d3f15cd72ba1fdec9637d39b7b (diff) | |
download | scummvm-rg350-829df06599e020759bda5f157cd31184318af3ce.tar.gz scummvm-rg350-829df06599e020759bda5f157cd31184318af3ce.tar.bz2 scummvm-rg350-829df06599e020759bda5f157cd31184318af3ce.zip |
SWORD1: Add GUIO_NOASPECT to Sword1
Diffstat (limited to 'engines/sword1')
-rw-r--r-- | engines/sword1/detection.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sword1/detection.cpp b/engines/sword1/detection.cpp index 9d9f198f8b..2214e72067 100644 --- a/engines/sword1/detection.cpp +++ b/engines/sword1/detection.cpp @@ -198,17 +198,17 @@ GameList SwordMetaEngine::detectGames(const Common::FSList &fslist) const { psxDemoFilesFound = false; if (mainFilesFound && pcFilesFound && demoFilesFound) - detectedGames.push_back(GameDescriptor(sword1DemoSettings, GUIO1(GUIO_NOMIDI))); + detectedGames.push_back(GameDescriptor(sword1DemoSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT))); else if (mainFilesFound && pcFilesFound && psxFilesFound) - detectedGames.push_back(GameDescriptor(sword1PSXSettings, GUIO1(GUIO_NOMIDI))); + detectedGames.push_back(GameDescriptor(sword1PSXSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT))); else if (mainFilesFound && pcFilesFound && psxDemoFilesFound) - detectedGames.push_back(GameDescriptor(sword1PSXDemoSettings, GUIO1(GUIO_NOMIDI))); + detectedGames.push_back(GameDescriptor(sword1PSXDemoSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT))); else if (mainFilesFound && pcFilesFound && !psxFilesFound) - detectedGames.push_back(GameDescriptor(sword1FullSettings, GUIO1(GUIO_NOMIDI))); + detectedGames.push_back(GameDescriptor(sword1FullSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT))); else if (mainFilesFound && macFilesFound) - detectedGames.push_back(GameDescriptor(sword1MacFullSettings, GUIO1(GUIO_NOMIDI))); + detectedGames.push_back(GameDescriptor(sword1MacFullSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT))); else if (mainFilesFound && macDemoFilesFound) - detectedGames.push_back(GameDescriptor(sword1MacDemoSettings, GUIO1(GUIO_NOMIDI))); + detectedGames.push_back(GameDescriptor(sword1MacDemoSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT))); return detectedGames; } |