aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/music.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/groovie/music.cpp')
-rw-r--r--engines/groovie/music.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/groovie/music.cpp b/engines/groovie/music.cpp
index 4e0a97aabb..f2b190985d 100644
--- a/engines/groovie/music.cpp
+++ b/engines/groovie/music.cpp
@@ -41,7 +41,7 @@ MusicPlayer::MusicPlayer(GroovieEngine *vm) :
}
MusicPlayer::~MusicPlayer() {
- g_system->getAudioCD()->stop();
+ g_system->getAudioCDManager()->stop();
}
void MusicPlayer::playSong(uint32 fileref) {
@@ -89,7 +89,7 @@ void MusicPlayer::playCD(uint8 track) {
// the song number (it's track 2 on the 2nd CD)
} else if ((track == 98) && (_prevCDtrack == 3)) {
// Track 98 is used as a hack to stop the credits song
- g_system->getAudioCD()->stop();
+ g_system->getAudioCDManager()->stop();
return;
}
@@ -100,16 +100,16 @@ void MusicPlayer::playCD(uint8 track) {
// It was in the original interpreter, but it introduces a big delay
// in the middle of the introduction, so it's disabled right now
/*
- g_system->getAudioCD()->updateCD();
- while (g_system->getAudioCD()->isPlaying()) {
+ g_system->getAudioCDManager()->updateCD();
+ while (g_system->getAudioCDManager()->isPlaying()) {
// Wait a bit and try again
_vm->_system->delayMillis(100);
- g_system->getAudioCD()->updateCD();
+ g_system->getAudioCDManager()->updateCD();
}
*/
// Play the track starting at the requested offset (1000ms = 75 frames)
- g_system->getAudioCD()->play(track - 1, 1, startms * 75 / 1000, 0);
+ g_system->getAudioCDManager()->play(track - 1, 1, startms * 75 / 1000, 0);
}
void MusicPlayer::startBackground() {