diff options
| author | lolbot-iichan | 2019-07-22 04:36:18 +0300 | 
|---|---|---|
| committer | Filippos Karapetis | 2019-07-22 07:56:13 +0300 | 
| commit | 02eb33f83f3b6a124152bd318bd603d4f0253065 (patch) | |
| tree | fdc71917caa38500f94df3bd63a76231d2a5420d | |
| parent | 2e6b2e9226789b113a675f508c5b80ef622d9812 (diff) | |
| download | scummvm-rg350-02eb33f83f3b6a124152bd318bd603d4f0253065.tar.gz scummvm-rg350-02eb33f83f3b6a124152bd318bd603d4f0253065.tar.bz2 scummvm-rg350-02eb33f83f3b6a124152bd318bd603d4f0253065.zip | |
WINTERMUTE: Add detection for Italian demo of On the Tracks of Dinosaurs
NOTE: This is a 2.5D game that is out of ScummVM scope
Developer's Download page states that there are EN/RU/IT versions:
http://reptilesquest.000webhostapp.com/index.php?page=5
However, rq_demo_beta25_multilang.exe allows to select only EN/RU.
italian.dcp can be extracted from rq_demo_beta25_multilang.exe using any
tool for Inno Setup installer.
| -rw-r--r-- | engines/wintermute/detection_tables.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h index ddb0700474..ed6011e128 100644 --- a/engines/wintermute/detection_tables.h +++ b/engines/wintermute/detection_tables.h @@ -893,6 +893,12 @@ static const WMEGameDescription gameDescriptions[] = {  		WME_ENTRY2s("data.dcp", "b624d3b19e37c094801a28d817bc3d76", 27345755,  					"english.dcp", "42188d46ee079b555d578ea2b406fa19", 3897), Common::EN_ANY, ADGF_UNSTABLE | ADGF_DEMO, WME_1_9_1), +	// On the Tracks of Dinosaurs (Beta 2.5) (Italian) +	// NOTE: This is a 2.5D game that is out of ScummVM scope +	WME_WINENTRY("reptilesquest", "Beta 2.5", +		WME_ENTRY2s("data.dcp", "b624d3b19e37c094801a28d817bc3d76", 27345755, +					"italian.dcp", "361f41b1151119f66de851f07b78b7cc", 4132), Common::IT_ITA, ADGF_UNSTABLE | ADGF_DEMO, WME_1_9_1), +  	// On the Tracks of Dinosaurs (Beta 2.5) (Russian)  	// NOTE: This is a 2.5D game that is out of ScummVM scope  	WME_WINENTRY("reptilesquest", "Beta 2.5", | 
