From b224ad812ed369f3169fc7b236faa4c9212b003b Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Wed, 18 May 2005 01:17:17 +0000 Subject: [PATCH] There is no music engine for C64 versions yet. svn-id: r18149 --- scumm/scumm.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index f298790e0dd..d49dfe5642c 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)) {