There is no music engine for C64 versions yet.

svn-id: r18149
This commit is contained in:
Travis Howell 2005-05-18 01:17:17 +00:00
parent cba94db699
commit b224ad812e

View File

@ -1864,6 +1864,9 @@ void ScummEngine::setupMusic(int midi) {
#ifndef DISABLE_SCUMM_7_8 #ifndef DISABLE_SCUMM_7_8
_musicEngine = _imuseDigital = new IMuseDigital(this, 10); _musicEngine = _imuseDigital = new IMuseDigital(this, 10);
#endif #endif
} else if (_platform == Common::kPlatformC64) {
// TODO
_musicEngine = NULL;
} else if (_platform == Common::kPlatformNES) { } else if (_platform == Common::kPlatformNES) {
_musicEngine = new Player_NES(this); _musicEngine = new Player_NES(this);
} else if ((_platform == Common::kPlatformAmiga) && (_version == 2)) { } else if ((_platform == Common::kPlatformAmiga) && (_version == 2)) {