aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-01-23 19:40:28 +0000
committerSven Hesse2007-01-23 19:40:28 +0000
commita8c6b02a9c77364ed83159082f94bdd9dcd54547 (patch)
treedf44d74623cb0e38fad9adcce0eb993f0e4627f8 /engines/gob/game.cpp
parentac6bb86c96a82a9a7e3b9fdc409228752c7af559 (diff)
downloadscummvm-rg350-a8c6b02a9c77364ed83159082f94bdd9dcd54547.tar.gz
scummvm-rg350-a8c6b02a9c77364ed83159082f94bdd9dcd54547.tar.bz2
scummvm-rg350-a8c6b02a9c77364ed83159082f94bdd9dcd54547.zip
Added support for Infogrames/RobHubbard2 (amiga) music
svn-id: r25160
Diffstat (limited to 'engines/gob/game.cpp')
-rw-r--r--engines/gob/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/game.cpp b/engines/gob/game.cpp
index 5424a931b4..2ddec2fa56 100644
--- a/engines/gob/game.cpp
+++ b/engines/gob/game.cpp
@@ -348,8 +348,8 @@ void Game::freeSoundSlot(int16 slot) {
return;
if (_soundADL[slot]) {
- if (_vm->_music->getIndex() == slot)
- _vm->_music->stopPlay();
+ if (_vm->_adlib->getIndex() == slot)
+ _vm->_adlib->stopPlay();
if (_soundFromExt[slot] == 1) {
delete[] ((char *) _soundSamples[slot]);
_soundFromExt[slot] = 0;