aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2014-04-05 14:02:06 +0200
committerEinar Johan Trøan Sømåen2014-04-05 14:02:06 +0200
commit6afe5547c0f19dce03575923fbd9f573d313e690 (patch)
tree6ed933e0f0fbaabb659306a82344c5bb69efe35f /engines/wintermute
parent5bc19d0e0aa51b90b37bc8dc4ec9a05ea7b733f4 (diff)
downloadscummvm-rg350-6afe5547c0f19dce03575923fbd9f573d313e690.tar.gz
scummvm-rg350-6afe5547c0f19dce03575923fbd9f573d313e690.tar.bz2
scummvm-rg350-6afe5547c0f19dce03575923fbd9f573d313e690.zip
WINTERMUTE: Replace (fangame) and wmefan-, with (unknown version) and wmeunk-
Diffstat (limited to 'engines/wintermute')
-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 48c75f634d..a659c434d0 100644
--- a/engines/wintermute/detection.cpp
+++ b/engines/wintermute/detection.cpp
@@ -107,11 +107,11 @@ public:
}
}
// Prefix to avoid collisions with actually known games
- name = "wmefan-" + name;
+ name = "wmeunk-" + name;
Common::strlcpy(s_fallbackGameIdBuf, name.c_str(), sizeof(s_fallbackGameIdBuf) - 1);
s_fallbackDesc.gameid = s_fallbackGameIdBuf;
if (caption != name) {
- caption += " (fangame) ";
+ caption += " (unknown version) ";
char *offset = s_fallbackGameIdBuf + name.size() + 1;
uint32 remainingLength = (sizeof(s_fallbackGameIdBuf) - 1) - (name.size() + 1);
Common::strlcpy(offset, caption.c_str(), remainingLength);