diff options
Diffstat (limited to 'engines/scumm/detection.cpp')
-rw-r--r-- | engines/scumm/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp index e5c3023380..170ca0993c 100644 --- a/engines/scumm/detection.cpp +++ b/engines/scumm/detection.cpp @@ -963,7 +963,7 @@ static Common::String generatePreferredTarget(const DetectorResult &x) { } // Append the platform, if a non-standard one has been specified. - if (x.game.platform != Common::kPlatformPC && x.game.platform != Common::kPlatformUnknown) { + if (x.game.platform != Common::kPlatformDOS && x.game.platform != Common::kPlatformUnknown) { // HACK: For CoMI, it's pointless to encode the fact that it's for Windows if (x.game.id != GID_CMI) res = res + "-" + Common::getPlatformAbbrev(x.game.platform); |