diff options
author | Travis Howell | 2005-05-18 01:17:17 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-18 01:17:17 +0000 |
commit | b224ad812ed369f3169fc7b236faa4c9212b003b (patch) | |
tree | 28303acc14edcf3bef9be0d1cd3690c528ab0fb3 | |
parent | cba94db699bb834bfa9b05472843c5825dec9d72 (diff) | |
download | scummvm-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.cpp | 3 |
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)) { |