aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/detection.cpp')
-rw-r--r--engines/wintermute/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/detection.cpp b/engines/wintermute/detection.cpp
index b3a756f6c3..7c4da190dd 100644
--- a/engines/wintermute/detection.cpp
+++ b/engines/wintermute/detection.cpp
@@ -29,7 +29,7 @@
#include "engines/metaengine.h"
static const PlainGameDescriptor WinterMute_setting[] = {
- { "WinterMute", "WinterMute - Unspecified game" },
+ { "wintermute", "WinterMute - Unspecified game" },
{ 0, 0 }
};
@@ -72,7 +72,7 @@ public:
if (!file->isDirectory()) {
const char *gameName = file->getName().c_str();
- if (0 == scumm_stricmp("README", gameName)) {
+ if (0 == scumm_stricmp("data.dcp", gameName)) {
// You could check the contents of the file now if you need to.
detectedGames.push_back(WinterMute_setting[0]);
break;