diff options
author | Alejandro Marzini | 2010-06-15 04:13:12 +0000 |
---|---|---|
committer | Alejandro Marzini | 2010-06-15 04:13:12 +0000 |
commit | e1ef3cd9fc059ebe8c606d330173bc3f71f8dce7 (patch) | |
tree | 46fa8fa2fb556941a0edecee0a1e1169a29232b5 /engines/gob/sound | |
parent | 6a52a168eeb54938c757d3be560f7ba8b30aa7c0 (diff) | |
download | scummvm-rg350-e1ef3cd9fc059ebe8c606d330173bc3f71f8dce7.tar.gz scummvm-rg350-e1ef3cd9fc059ebe8c606d330173bc3f71f8dce7.tar.bz2 scummvm-rg350-e1ef3cd9fc059ebe8c606d330173bc3f71f8dce7.zip |
Renamed getAudioCD to getAudioCDManager.
svn-id: r49678
Diffstat (limited to 'engines/gob/sound')
-rw-r--r-- | engines/gob/sound/cdrom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/sound/cdrom.cpp b/engines/gob/sound/cdrom.cpp index ed006ca722..ec7da29fdb 100644 --- a/engines/gob/sound/cdrom.cpp +++ b/engines/gob/sound/cdrom.cpp @@ -115,7 +115,7 @@ void CDROM::play(uint32 from, uint32 to) { // HSG encodes frame information into a double word: // minute multiplied by 4500, plus second multiplied by 75, // plus frame, minus 150 - g_system->getAudioCD()->play(1, 1, from, to - from + 1); + g_system->getAudioCDManager()->play(1, 1, from, to - from + 1); _cdPlaying = true; } @@ -160,7 +160,7 @@ void CDROM::stopPlaying() { void CDROM::stop() { _curTrackBuffer = 0; - g_system->getAudioCD()->stop(); + g_system->getAudioCDManager()->stop(); _cdPlaying = false; } |