diff options
Diffstat (limited to 'engines/scumm/scumm.cpp')
| -rw-r--r-- | engines/scumm/scumm.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 8d3c3c0957..309e79b7a0 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1726,8 +1726,10 @@ void ScummEngine::setupMusic(int midi) {  		_musicEngine = new Player_V2A(this, _mixer);  	} else if (_game.platform == Common::kPlatformAmiga && _game.version == 3) {  		_musicEngine = new Player_V3A(this, _mixer); +#ifdef USE_RGB_COLOR  	} else if (_game.platform == Common::kPlatformPCEngine && _game.version == 3) {  		_musicEngine = new Player_PCE(this, _mixer); +#endif  	} else if (_game.platform == Common::kPlatformAmiga && _game.version <= 4) {  		_musicEngine = new Player_V4A(this, _mixer);  	} else if (_game.id == GID_MANIAC && _game.version == 1) { | 
