diff options
| author | strangerke | 2011-02-20 11:54:45 +0100 | 
|---|---|---|
| committer | strangerke | 2011-02-20 11:54:45 +0100 | 
| commit | 98cd1b6e0c8aac5a88e2058c37801ab20d2ac462 (patch) | |
| tree | 138d1f6e2aa38743986bff0c8e5c792cacc649a1 | |
| parent | 38f70f66f0e95cac7b81cd770326979bf76fa625 (diff) | |
| download | scummvm-rg350-98cd1b6e0c8aac5a88e2058c37801ab20d2ac462.tar.gz scummvm-rg350-98cd1b6e0c8aac5a88e2058c37801ab20d2ac462.tar.bz2 scummvm-rg350-98cd1b6e0c8aac5a88e2058c37801ab20d2ac462.zip  | |
MOHAWK: Add detection strings for Harry and the Haunted House
| -rw-r--r-- | engines/mohawk/detection.cpp | 1 | ||||
| -rw-r--r-- | engines/mohawk/detection_tables.h | 54 | 
2 files changed, 55 insertions, 0 deletions
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp index 51e4f89189..f759304f7d 100644 --- a/engines/mohawk/detection.cpp +++ b/engines/mohawk/detection.cpp @@ -124,6 +124,7 @@ static const PlainGameDescriptor mohawkGames[] = {  	{"lbsampler", "Living Books Sampler"},  	{"bearfight", "The Berenstain Bears Get in a Fight"},  	{"arthurcomp", "Arthur's Computer Adventure"}, +	{"harryhh","Harry and the Haunted House"},  	{0, 0}  }; diff --git a/engines/mohawk/detection_tables.h b/engines/mohawk/detection_tables.h index 92333f5fde..a26325be14 100644 --- a/engines/mohawk/detection_tables.h +++ b/engines/mohawk/detection_tables.h @@ -522,6 +522,60 @@ static const MohawkGameDescription gameDescriptions[] = {  		0  	}, +	// Harry and the Haunted House v1.0E +	// English Windows 3.11 +	// From strangerke +	{ +		{ +			"harryhh", +			"", +			AD_ENTRY1("HHHB.LB", "267bb6e3c8f237ca98b02c07b9c4013f"), +			Common::EN_ANY, +			Common::kPlatformWindows, +			ADGF_NO_FLAGS, +			Common::GUIO_NONE +		}, +		GType_LIVINGBOOKSV2, +		0, +		0 +	}, + +	// Harry and the Haunted House v1.0E +	// French Windows 3.11 +	// From strangerke +	{ +		{ +			"harryhh", +			"", +			AD_ENTRY1("HHHF.LB", "7e5da86f19935bdf8fa89bbd39446543"), +			Common::FR_FRA, +			Common::kPlatformWindows, +			ADGF_NO_FLAGS, +			Common::GUIO_NONE +		}, +		GType_LIVINGBOOKSV2, +		0, +		0 +	}, + +	// Harry and the Haunted House v1.0E +	// German Windows 3.11 +	// From strangerke +	{ +		{ +			"harryhh", +			"", +			AD_ENTRY1("HHHD.LB", "85c0a816efeb679739158789befb2be8"), +			Common::DE_DEU, +			Common::kPlatformWindows, +			ADGF_NO_FLAGS, +			Common::GUIO_NONE +		}, +		GType_LIVINGBOOKSV2, +		0, +		0 +	}, +  	{  		{  			"carmentq",  | 
