diff options
author | Eugene Sandulenko | 2006-04-13 04:01:55 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-04-13 04:01:55 +0000 |
commit | 3fa9fa06c2787697606e001e402fae1ec798bad2 (patch) | |
tree | 18aa4afce32a4b608679301b200479efdb05f48a /engines | |
parent | 491d5ad12e42335dc356f73b60d166c5cc990b37 (diff) | |
download | scummvm-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
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/plugin.cpp | 4 |
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; |