aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-11-24 00:15:10 +0000
committerTravis Howell2009-11-24 00:15:10 +0000
commit47e358cd12dcb2fc044fda26e0c3216519bd1e22 (patch)
tree658374bd430db68c1f22dc55ea4deaa153c00089 /engines/scumm/scumm.cpp
parent65eae0b53e367f32af8bc38223726fafd27d3726 (diff)
downloadscummvm-rg350-47e358cd12dcb2fc044fda26e0c3216519bd1e22.tar.gz
scummvm-rg350-47e358cd12dcb2fc044fda26e0c3216519bd1e22.tar.bz2
scummvm-rg350-47e358cd12dcb2fc044fda26e0c3216519bd1e22.zip
Exclude PCE sound player, from non-16bit color build.
svn-id: r46119
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp2
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) {