aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-03-03 12:59:48 +0000
committerTravis Howell2007-03-03 12:59:48 +0000
commitb0fea397ab22e3956106a3429994d794686d17e7 (patch)
tree20af16ec8513bd1e34daa958be6706f7aa1b4551 /engines/scumm/scumm.cpp
parent84d2c1782f0a4c31fd8a75eb075ecbc5515d2c50 (diff)
downloadscummvm-rg350-b0fea397ab22e3956106a3429994d794686d17e7.tar.gz
scummvm-rg350-b0fea397ab22e3956106a3429994d794686d17e7.tar.bz2
scummvm-rg350-b0fea397ab22e3956106a3429994d794686d17e7.zip
Allow PC Engine version of Loom to at least start up.
svn-id: r25951
Diffstat (limited to 'engines/scumm/scumm.cpp')
-rw-r--r--engines/scumm/scumm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index e107bca6aa..9c7d8b6a7c 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1572,7 +1572,8 @@ void ScummEngine::setupMusic(int midi) {
// Init iMuse
if (_game.version >= 7) {
// Setup for digital iMuse is performed in another place
- } else if (_game.platform == Common::kPlatformApple2GS || _game.platform == Common::kPlatformC64) {
+ } else if (_game.platform == Common::kPlatformApple2GS || _game.platform == Common::kPlatformC64 ||
+ _game.platform == Common::kPlatformPCEngine) {
// TODO
_musicEngine = NULL;
} else if (_game.platform == Common::kPlatformNES) {