aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2006-04-13 04:01:55 +0000
committerEugene Sandulenko2006-04-13 04:01:55 +0000
commit3fa9fa06c2787697606e001e402fae1ec798bad2 (patch)
tree18aa4afce32a4b608679301b200479efdb05f48a
parent491d5ad12e42335dc356f73b60d166c5cc990b37 (diff)
downloadscummvm-rg350-3fa9fa06c2787697606e001e402fae1ec798bad2.tar.gz
scummvm-rg350-3fa9fa06c2787697606e001e402fae1ec798bad2.tar.bz2
scummvm-rg350-3fa9fa06c2787697606e001e402fae1ec798bad2.zip
Clarified detection filenames for HE games (removed FIXME comments).
svn-id: r21835
-rw-r--r--engines/scumm/plugin.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp
index 7cdf424fe2..42de9074fb 100644
--- a/engines/scumm/plugin.cpp
+++ b/engines/scumm/plugin.cpp
@@ -629,17 +629,15 @@ Common::String generateFilenameForDetection(const GameFilenamePattern &gfp) {
break;
case kGenHEMac:
- // FIXME: Is this correct?
snprintf(buf, sizeof(buf), "%s (0)", gfp.pattern);
break;
case kGenHEMacNoParens:
- // FIXME: Is this correct?
snprintf(buf, sizeof(buf), "%s 0", gfp.pattern);
break;
default:
- error("FOO");
+ error("generateFilenameForDetection: Unhandled genMethod");
}
return buf;