aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;