mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-01 16:35:20 +00:00
SWORD1: After discussion with clone2727 and eriktorbjorn, remove GUIO_NOASPECT from Sword1
This commit is contained in:
parent
4f610235a5
commit
9b112fb56a
@ -198,17 +198,17 @@ GameList SwordMetaEngine::detectGames(const Common::FSList &fslist) const {
|
||||
psxDemoFilesFound = false;
|
||||
|
||||
if (mainFilesFound && pcFilesFound && demoFilesFound)
|
||||
detectedGames.push_back(GameDescriptor(sword1DemoSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT)));
|
||||
detectedGames.push_back(GameDescriptor(sword1DemoSettings, GUIO1(GUIO_NOMIDI)));
|
||||
else if (mainFilesFound && pcFilesFound && psxFilesFound)
|
||||
detectedGames.push_back(GameDescriptor(sword1PSXSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT)));
|
||||
detectedGames.push_back(GameDescriptor(sword1PSXSettings, GUIO1(GUIO_NOMIDI)));
|
||||
else if (mainFilesFound && pcFilesFound && psxDemoFilesFound)
|
||||
detectedGames.push_back(GameDescriptor(sword1PSXDemoSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT)));
|
||||
detectedGames.push_back(GameDescriptor(sword1PSXDemoSettings, GUIO1(GUIO_NOMIDI)));
|
||||
else if (mainFilesFound && pcFilesFound && !psxFilesFound)
|
||||
detectedGames.push_back(GameDescriptor(sword1FullSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT)));
|
||||
detectedGames.push_back(GameDescriptor(sword1FullSettings, GUIO1(GUIO_NOMIDI)));
|
||||
else if (mainFilesFound && macFilesFound)
|
||||
detectedGames.push_back(GameDescriptor(sword1MacFullSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT)));
|
||||
detectedGames.push_back(GameDescriptor(sword1MacFullSettings, GUIO1(GUIO_NOMIDI)));
|
||||
else if (mainFilesFound && macDemoFilesFound)
|
||||
detectedGames.push_back(GameDescriptor(sword1MacDemoSettings, GUIO2(GUIO_NOMIDI, GUIO_NOASPECT)));
|
||||
detectedGames.push_back(GameDescriptor(sword1MacDemoSettings, GUIO1(GUIO_NOMIDI)));
|
||||
|
||||
return detectedGames;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user