aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/groovie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/groovie/groovie.cpp')
-rw-r--r--engines/groovie/groovie.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp
index e2315459d4..9381b5b47c 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -94,7 +94,11 @@ Common::Error GroovieEngine::run() {
}
// Create the music player
- _musicPlayer = new MusicPlayer(this, _gameDescription->version == kGroovieT7G ? "fat" : "sample");
+ if (_gameDescription->desc.platform == Common::kPlatformMacintosh) {
+ _musicPlayer = new MusicPlayerMac(this);
+ } else {
+ _musicPlayer = new MusicPlayerXMI(this, _gameDescription->version == kGroovieT7G ? "fat" : "sample");
+ }
// Load volume levels
syncSoundSettings();