aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2008-12-23 21:17:39 +0000
committerMatthew Hoops2008-12-23 21:17:39 +0000
commita159fc893767dedd85d7ac70452704171b5de508 (patch)
tree2805f80e393bd5c10aaf34390080a930543aba9b /engines
parenta93cf38f0bc877ee5741eb172984cfe514e77891 (diff)
downloadscummvm-rg350-a159fc893767dedd85d7ac70452704171b5de508.tar.gz
scummvm-rg350-a159fc893767dedd85d7ac70452704171b5de508.tar.bz2
scummvm-rg350-a159fc893767dedd85d7ac70452704171b5de508.zip
Update detection of the 11th hour demo. The disk.1 wasn't with the other files.
svn-id: r35509
Diffstat (limited to 'engines')
-rw-r--r--engines/groovie/detection.cpp4
-rw-r--r--engines/groovie/groovie.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/groovie/detection.cpp b/engines/groovie/detection.cpp
index f4f7be7c86..c83017e9bc 100644
--- a/engines/groovie/detection.cpp
+++ b/engines/groovie/detection.cpp
@@ -88,10 +88,10 @@ static const GroovieGameDescription gameDescriptions[] = {
{
{
"11h", "Demo",
- AD_ENTRY1s("demo.grv", "5faec559b9abf18cf143751b420208dc", 15991),
+ AD_ENTRY1s("disk.1", "aacb32ce07e0df2894bd83a3dee40c12", 70),
Common::EN_ANY, Common::kPlatformPC, Common::ADGF_DEMO
},
- kGroovieV2, 0
+ kGroovieV2, 1
},
// The Making of The 11th Hour DOS English
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp
index c4f5de5cd4..e54023aac6 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -106,7 +106,7 @@ Common::Error GroovieEngine::init() {
if (ConfMan.hasKey("demo_mode") && ConfMan.getBool("demo_mode")) {
filename = Common::String("demo.grv");
}
- } else if (_gameDescription->version == kGroovieV2 && filename == "disk.1") {
+ } else if (_gameDescription->version == kGroovieV2) {
// Open the disk index
Common::File disk;
if (!disk.open(filename)) {