aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorJohannes Schickel2014-07-05 14:10:31 +0200
committerJohannes Schickel2014-07-05 14:16:20 +0200
commit21de3fe7074c3e22d7717c738da369c4e8c97919 (patch)
tree3ca2f806fc39f3272646b993c507195bb44b2dce /engines/scumm
parentc44c46a4fbd778d32b522d5a004167c5847e7778 (diff)
downloadscummvm-rg350-21de3fe7074c3e22d7717c738da369c4e8c97919.tar.gz
scummvm-rg350-21de3fe7074c3e22d7717c738da369c4e8c97919.tar.bz2
scummvm-rg350-21de3fe7074c3e22d7717c738da369c4e8c97919.zip
SCUMM: Cleanup.
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/detection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp
index 87c1aa1505..7cd50e1f4c 100644
--- a/engines/scumm/detection.cpp
+++ b/engines/scumm/detection.cpp
@@ -214,8 +214,8 @@ Common::String ScummEngine_v70he::generateFilename(const int room) const {
// The following table includes all the index files, which are embedded in the
// main game executables in Steam versions.
static const SteamIndexFile steamIndexFiles[] = {
- { GID_INDY3, Common::kPlatformWindows, "%02d.LFL", "00.LFL", "Indiana Jones and the Last Crusade.exe", 162056, 6295 },
- { GID_INDY3, Common::kPlatformMacintosh, "%02d.LFL", "00.LFL", "The Last Crusade", 150368, 6295 },
+ { GID_INDY3, Common::kPlatformWindows, "%02d.LFL", "00.LFL", "Indiana Jones and the Last Crusade.exe", 162056, 6295 },
+ { GID_INDY3, Common::kPlatformMacintosh, "%02d.LFL", "00.LFL", "The Last Crusade", 150368, 6295 },
{ GID_INDY4, Common::kPlatformWindows, "atlantis.%03d", "ATLANTIS.000", "Indiana Jones and the Fate of Atlantis.exe", 224336, 12035 },
{ GID_INDY4, Common::kPlatformMacintosh, "atlantis.%03d", "ATLANTIS.000", "The Fate of Atlantis", 260224, 12035 },
{ GID_LOOM, Common::kPlatformWindows, "%03d.LFL", "000.LFL", "Loom.exe", 187248, 8307 },
@@ -224,7 +224,7 @@ static const SteamIndexFile steamIndexFiles[] = {
{ GID_DIG, Common::kPlatformWindows, "dig.la%d", "DIG.LA0", "The Dig.exe", 340632, 16304 },
{ GID_DIG, Common::kPlatformMacintosh, "dig.la%d", "DIG.LA0", "The Dig", 339744, 16304 },
#endif
- { 0, Common::kPlatformUnknown, "", "", "", 0, 0 }
+ { 0, Common::kPlatformUnknown, nullptr, nullptr, nullptr, 0, 0 }
};
const SteamIndexFile *lookUpSteamIndexFile(Common::String pattern, Common::Platform platform) {