diff options
| -rw-r--r-- | engines/made/detection.cpp | 23 | 
1 files changed, 21 insertions, 2 deletions
| diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp index 7f12a85611..a68f46cfad 100644 --- a/engines/made/detection.cpp +++ b/engines/made/detection.cpp @@ -74,6 +74,10 @@ namespace Made {  static const MadeGameDescription gameDescriptions[] = {  	{ +		// NOTE: Return to Zork entries with *.dat are used to detect the game via rtzcd.dat, +		// which is packed inside rtzcd.red. Entries with *.red refer to the packed file +		// directly, which is the "official" way. +  		// Return to Zork - English CD version 1.0 9/15/93  		// Patch #1953654 submitted by spookypeanut  		{ @@ -109,8 +113,6 @@ static const MadeGameDescription gameDescriptions[] = {  	{  		// Return to Zork - English CD version 1.1 12/7/93 -		// NOTE: This detects the game via the rtzcd.dat which is inside rtzcd.red. -		// The entry below detects via rtzcd.red directly, which is the "official" way.  		{  			"rtz",  			"CD", @@ -157,6 +159,23 @@ static const MadeGameDescription gameDescriptions[] = {  		0,  	}, +	{ +		// Return to Zork - German CD version 1.2 4/18/95 +		// (same as the English 1.2 version) +		// Supplied by Dark-Star in the ScummVM forums +		{ +			"rtz", +			"CD", +			AD_ENTRY1("rtzcd.red", "946997d8b0aa6cb4e848bad02a1fc3d2"), +			Common::DE_DEU, +			Common::kPlatformPC, +			Common::ADGF_NO_FLAGS +		}, +		GID_RTZ, +		0, +		GF_CD_COMPRESSED, +		0, +	},  	{  		// Return to Zork - English floppy version | 
