aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v2.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-01-25 15:17:46 +0000
committerSven Hesse2007-01-25 15:17:46 +0000
commit43fb2e6ed9335831df31bead748f4fb7247c3272 (patch)
tree2e73f0eb9b60e5b29fda50fb0e33aa569e9d3a15 /engines/gob/inter_v2.cpp
parentf7c6643841d85334c57df7687eb1caba014f1019 (diff)
downloadscummvm-rg350-43fb2e6ed9335831df31bead748f4fb7247c3272.tar.gz
scummvm-rg350-43fb2e6ed9335831df31bead748f4fb7247c3272.tar.bz2
scummvm-rg350-43fb2e6ed9335831df31bead748f4fb7247c3272.zip
Moved Paula and Infogrames to sound/mods/
svn-id: r25191
Diffstat (limited to 'engines/gob/inter_v2.cpp')
-rw-r--r--engines/gob/inter_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/inter_v2.cpp b/engines/gob/inter_v2.cpp
index 181289621e..f134d91fa6 100644
--- a/engines/gob/inter_v2.cpp
+++ b/engines/gob/inter_v2.cpp
@@ -2332,7 +2332,7 @@ void Inter_v2::o2_playInfogrames(int16 &extraData, int32 *retVarPtr, Goblin::Gob
strcat(fileName, ".DUM");
debugC(1, kDebugMusic, "Playing Infogrames music file \"%s\"", fileName);
if (!_vm->_game->_infIns) {
- _vm->_game->_infIns = new Infogrames::Instruments;
+ _vm->_game->_infIns = new Audio::Infogrames::Instruments;
if (!_vm->_game->_infIns->load("i1.ins")) {
warning("Couldn't load instruments file");
delete _vm->_game->_infIns;
@@ -2342,7 +2342,7 @@ void Inter_v2::o2_playInfogrames(int16 &extraData, int32 *retVarPtr, Goblin::Gob
if (_vm->_game->_infIns) {
_vm->_mixer->stopHandle(_vm->_game->_infHandle);
_vm->_game->_infogrames =
- new Infogrames(*_vm->_game->_infIns, true,
+ new Audio::Infogrames(*_vm->_game->_infIns, true,
_vm->_mixer->getOutputRate());
if (!_vm->_game->_infogrames->load(fileName)) {
warning("Couldn't load infogrames music");