diff options
| -rw-r--r-- | engines/sherlock/detection_tables.h | 47 | 
1 files changed, 46 insertions, 1 deletions
| diff --git a/engines/sherlock/detection_tables.h b/engines/sherlock/detection_tables.h index 2f94f78f8a..752ef8d5cf 100644 --- a/engines/sherlock/detection_tables.h +++ b/engines/sherlock/detection_tables.h @@ -24,7 +24,7 @@ namespace Sherlock {  static const SherlockGameDescription gameDescriptions[] = {  	{ -		// Case of the Serrated Scalpel - English +		// Case of the Serrated Scalpel - English 3.5" Floppy  		{  			"scalpel",  			0, @@ -37,6 +37,51 @@ static const SherlockGameDescription gameDescriptions[] = {  		GType_SerratedScalpel,  	}, +	{ +		// Case of the Serrated Scalpel - Interactive English Demo +		// Provided by Strangerke +		{ +			"scalpel", +			"Interactive Demo", +			AD_ENTRY1s("talk.lib", "dbdc8a20c96900aa7e4d02f3fe8a274c", 121102), +			Common::EN_ANY, +			Common::kPlatformDOS, +			ADGF_DEMO, +			GUIO1(GUIO_NOSPEECH) +		}, +		GType_SerratedScalpel, +	}, + +	{ +		// Case of the Serrated Scalpel - Non-Interactive English Demo +		// Provided by Strangerke +		{ +			"scalpel", +			"Non Interactive Demo", +			AD_ENTRY1s("music.lib", "ec19a09b7fef6fd90b1ab812ce6e9739", 38563), +			Common::EN_ANY, +			Common::kPlatformDOS, +			ADGF_DEMO, +			GUIO1(GUIO_NOSPEECH) +		}, +		GType_SerratedScalpel, +	}, + +	{ +		// Case of the Rose Tattoo - French CD +		// Provided by Strangerke +		{ +			"rosetattoo", +			0, +			AD_ENTRY1s("talk.lib", "22e8e6406dd2fbbb238c9898928df42e", 770756), +			Common::EN_ANY, +			Common::kPlatformDOS, +			ADGF_NO_FLAGS, +			GUIO1(GUIO_NONE) +		}, +		GType_RoseTattoo, +	}, +  	{ AD_TABLE_END_MARKER, (GameType)0 }  }; | 
