diff options
| author | Fabio Battaglia | 2010-02-19 12:33:58 +0000 | 
|---|---|---|
| committer | Fabio Battaglia | 2010-02-19 12:33:58 +0000 | 
| commit | 8502d9248ed348a66850a58861addaf8a685e713 (patch) | |
| tree | 0699f49a678c5b2c5c734af56550d35cb438c08b | |
| parent | fd9b52509f330146e4af1169ce107abffdf3dbb9 (diff) | |
| download | scummvm-rg350-8502d9248ed348a66850a58861addaf8a685e713.tar.gz scummvm-rg350-8502d9248ed348a66850a58861addaf8a685e713.tar.bz2 scummvm-rg350-8502d9248ed348a66850a58861addaf8a685e713.zip  | |
tinsel: Add detection for Discworld 1 floppy EUR version
svn-id: r48088
| -rw-r--r-- | engines/tinsel/detection.cpp | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/engines/tinsel/detection.cpp b/engines/tinsel/detection.cpp index cd2e6b58a5..76ba8ab17b 100644 --- a/engines/tinsel/detection.cpp +++ b/engines/tinsel/detection.cpp @@ -131,6 +131,30 @@ static const TinselGameDescription gameDescriptions[] = {  		TINSEL_V1,  	}, +	{	// Multilingual Floppy V1 with *.gra files. +		// Note: It contains no english subtitles. +		{ +			"dw", +			"Floppy", +			{ +				{"dw.gra", 0, "c8808ccd988d603dd35dff42013ae7fd", 781656}, +				{"french.txt", 0, NULL, -1}, +				{"german.txt", 0, NULL, -1}, +				{"italian.txt", 0, NULL, -1}, +				{"spanish.txt", 0, NULL, -1}, +				{NULL, 0, NULL, 0} +			}, +			Common::FR_FRA, +			Common::kPlatformPC, +			ADGF_DROPLANGUAGE, +			GUIO_NOSPEECH +		}, +		GID_DW1, +		0, +		GF_FLOPPY | GF_USE_4FLAGS | GF_ENHANCED_AUDIO_SUPPORT, +		TINSEL_V1, +	}, +  	{	// Floppy V1 version, with *.gra files  		{  			"dw",  | 
