diff options
author | Travis Howell | 2005-05-06 07:45:48 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-06 07:45:48 +0000 |
commit | 21fe989da9b54389fae71465fe0ba62382935e5e (patch) | |
tree | 95b2baad0bf46f722226983d13c3a8f723df6eaf | |
parent | 172b95d3476b1f69a073ec4436fa0868f237fa7b (diff) | |
download | scummvm-rg350-21fe989da9b54389fae71465fe0ba62382935e5e.tar.gz scummvm-rg350-21fe989da9b54389fae71465fe0ba62382935e5e.tar.bz2 scummvm-rg350-21fe989da9b54389fae71465fe0ba62382935e5e.zip |
Fix regression in demos (Failed to find correct file to md5 checksum).
svn-id: r17927
-rw-r--r-- | scumm/scumm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 73565c4087..8f6d86bfbe 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -192,7 +192,7 @@ static const ScummGameSettings scumm_settings[] = { {"ftdemo", "Full Throttle (Mac Demo)", GID_FT, 7, 0, 30, MDT_NONE, GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, Common::kPlatformMacintosh, 0, "Full Throttle Demo Data"}, {"ftpcdemo", "Full Throttle (PC Demo)", GID_FT, 7, 0, 30, MDT_NONE, - GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, Common::kPlatformUnknown, "ft", 0}, + GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, Common::kPlatformPC, "ft", "ft.000"}, {"dig", "The Dig", GID_DIG, 7, 0, 30, MDT_NONE, @@ -200,7 +200,7 @@ static const ScummGameSettings scumm_settings[] = { {"digMac", "The Dig (Mac)", GID_DIG, 7, 0, 30, MDT_NONE, GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE, Common::kPlatformMacintosh, "dig", "The Dig Data"}, {"digdemo", "The Dig (Demo)", GID_DIG, 7, 0, 30, MDT_NONE, - GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, Common::kPlatformUnknown, "dig", 0}, + GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, Common::kPlatformUnknown, "dig", "dig.la0"}, {"digdemoMac", "The Dig (Mac Demo)", GID_DIG, 7, 0, 30, MDT_NONE, GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, Common::kPlatformMacintosh, "dig", "The Dig Demo Data"}, @@ -209,7 +209,7 @@ static const ScummGameSettings scumm_settings[] = { {"comi", "The Curse of Monkey Island", GID_CMI, 8, 0, 80, MDT_NONE, GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEFAULT_TO_1X_SCALER, Common::kPlatformUnknown, 0, 0}, {"comidemo", "The Curse of Monkey Island (Demo)", GID_CMI, 8, 0, 80, MDT_NONE, - GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEFAULT_TO_1X_SCALER | GF_DEMO, Common::kPlatformUnknown, "comi", 0}, + GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEFAULT_TO_1X_SCALER | GF_DEMO, Common::kPlatformUnknown, "comi", "COMI.LA0"}, #endif // Humongous Entertainment Scumm Version 6 |