diff options
| -rw-r--r-- | engines/wintermute/detection_tables.h | 93 | 
1 files changed, 89 insertions, 4 deletions
diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h index e77a376501..2f14c6cae1 100644 --- a/engines/wintermute/detection_tables.h +++ b/engines/wintermute/detection_tables.h @@ -42,7 +42,7 @@ static const PlainGameDescriptor wintermuteGames[] = {  	{"julia",           "J.U.L.I.A."},  	{"mirage",          "Mirage"},  	{"pigeons",         "Pigeons in the Park"}, -	{"reversion",       "Reversion"}, +	{"reversion1",      "Reversion: The Escape"},  	{"rosemary",        "Rosemary"},  	{"thebox",          "The Box"},  	{"twc",             "the white chamber"}, @@ -297,16 +297,100 @@ static const ADGameDescription gameDescriptions[] = {  		ADGF_UNSTABLE,  		GUIO0()  	}, -	// Reversion +	// Reversion: The Escape Version 1.0  	{ -		"reversion", -		"", +		"reversion1", +		"Version 1.0",  		AD_ENTRY1s("data.dcp", "cd616f98ebfd047e0c540b50b4b70761", 254384531),  		Common::EN_ANY,  		Common::kPlatformWindows,  		ADGF_UNSTABLE,  		GUIO0()  	}, +	// Reversion: The Escape Version 1.1 (Chinese) +	{ +		"reversion1", +		"Version 1.1", +		{ +			{"chinese.dcp", 0, "cf97150739499a4c15f51dc534ff85a1", 6330561}, +			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531), +			AD_LISTEND +		}, +		Common::ZH_CNA, +		Common::kPlatformWindows, +		ADGF_UNSTABLE, +		GUIO0() +	}, +	// Reversion: The Escape Version 1.1 (English) +	{ +		"reversion1", +		"Version 1.1", +		{ +			{"english.dcp", 0, "7b2f061d7c91365c5d04605f1de032b3", 5702699}, +			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531), +			AD_LISTEND +		}, +		Common::EN_ANY, +		Common::kPlatformWindows, +		ADGF_UNSTABLE, +		GUIO0() +	}, +	// Reversion: The Escape Version 1.1 (French) +	{ +		"reversion1", +		"Version 1.1", +		{ +			{"french.dcp", 0, "214204b6022c5ed67fada44557690faf", 6327400}, +			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531), +			AD_LISTEND +		}, +		Common::FR_FRA, +		Common::kPlatformWindows, +		ADGF_UNSTABLE, +		GUIO0() +	}, +	// Reversion: The Escape Version 1.1 (German) +	{ +		"reversion1", +		"Version 1.1", +		{ +			{"german.dcp", 0, "96677823b36d580a4a29e3659071071c", 6340699}, +			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531), +			AD_LISTEND +		}, +		Common::DE_DEU, +		Common::kPlatformWindows, +		ADGF_UNSTABLE, +		GUIO0() +	}, +	// Reversion: The Escape Version 1.1 (Italian) +	{ +		"reversion1", +		"Version 1.1", +		{ +			{"italian.dcp", 0, "9ce80c1835108f10170a02969f71efe1", 6301836}, +			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531), +			AD_LISTEND +		}, +		Common::IT_ITA, +		Common::kPlatformWindows, +		ADGF_UNSTABLE, +		GUIO0() +	}, +	// Reversion: The Escape Version 1.1 (Portuguese) +	{ +		"reversion1", +		"Version 1.1", +		{ +			{"portugues.dcp", 0, "8772501afa2c630a7c697eb99e9c7bda", 5053303}, +			("data.dcp", 0, "cd616f98ebfd047e0c540b50b4b70761", 254384531), +			AD_LISTEND +		}, +		Common::PT_BRA, +		Common::kPlatformWindows, +		ADGF_UNSTABLE, +		GUIO0() +	},  	// Rosemary  	{  		"rosemary", @@ -341,3 +425,4 @@ static const ADGameDescription gameDescriptions[] = {  };  } // End of namespace Wintermute +  | 
