diff options
Diffstat (limited to 'engines/scumm/scumm.cpp')
| -rw-r--r-- | engines/scumm/scumm.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 9c7d8b6a7c..275ac09625 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -595,8 +595,9 @@ ScummEngine_v5::ScummEngine_v5(OSystem *syst, const DetectorResult &dr)   : ScummEngine(syst, dr) {  	// All "classic" games (V5 and older) encrypted their data files -	// with exception of the GF_OLD256 games. -	if (!(_game.features & GF_OLD256)) +	// with exception of the GF_OLD256 games and the PC-Engine version +	// of Loom. +	if (!(_game.features & GF_OLD256) && _game.platform != Common::kPlatformPCEngine)   		_game.features |= GF_USE_KEY;  	static const uint16 default_cursor_images[4][16] = { | 
