aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-05-18 01:17:17 +0000
committerTravis Howell2005-05-18 01:17:17 +0000
commitb224ad812ed369f3169fc7b236faa4c9212b003b (patch)
tree28303acc14edcf3bef9be0d1cd3690c528ab0fb3
parentcba94db699bb834bfa9b05472843c5825dec9d72 (diff)
downloadscummvm-rg350-b224ad812ed369f3169fc7b236faa4c9212b003b.tar.gz
scummvm-rg350-b224ad812ed369f3169fc7b236faa4c9212b003b.tar.bz2
scummvm-rg350-b224ad812ed369f3169fc7b236faa4c9212b003b.zip
There is no music engine for C64 versions yet.
svn-id: r18149
-rw-r--r--scumm/scumm.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index f298790e0d..d49dfe5642 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1864,6 +1864,9 @@ void ScummEngine::setupMusic(int midi) {
#ifndef DISABLE_SCUMM_7_8
_musicEngine = _imuseDigital = new IMuseDigital(this, 10);
#endif
+ } else if (_platform == Common::kPlatformC64) {
+ // TODO
+ _musicEngine = NULL;
} else if (_platform == Common::kPlatformNES) {
_musicEngine = new Player_NES(this);
} else if ((_platform == Common::kPlatformAmiga) && (_version == 2)) {