aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorSven Hesse2007-02-04 15:59:05 +0000
committerSven Hesse2007-02-04 15:59:05 +0000
commit0ed752aa6ee77a6a5262c366c41e1d08ba3ab44c (patch)
treecddf5d607ba2ba51a35d4bae47c6c6d9a4ba9bda /engines/gob
parent890ee9728524e30719297624261f749d8138b65d (diff)
downloadscummvm-rg350-0ed752aa6ee77a6a5262c366c41e1d08ba3ab44c.tar.gz
scummvm-rg350-0ed752aa6ee77a6a5262c366c41e1d08ba3ab44c.tar.bz2
scummvm-rg350-0ed752aa6ee77a6a5262c366c41e1d08ba3ab44c.zip
- Moved the specific interrupt frequency of 80 Hz out of class Infogrames into the GobEngine's Infogrames instances
- Changed the 80 Hz to 75 Hz, which is more true to the original svn-id: r25389
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/inter_v2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_v2.cpp b/engines/gob/inter_v2.cpp
index 22a3ca6d97..b0efea4ea3 100644
--- a/engines/gob/inter_v2.cpp
+++ b/engines/gob/inter_v2.cpp
@@ -2314,7 +2314,7 @@ void Inter_v2::o2_playInfogrames(int16 &extraData, int32 *retVarPtr, Goblin::Gob
_vm->_mixer->stopHandle(_vm->_game->_infHandle);
_vm->_game->_infogrames =
new Audio::Infogrames(*_vm->_game->_infIns, true,
- _vm->_mixer->getOutputRate());
+ _vm->_mixer->getOutputRate(), _vm->_mixer->getOutputRate() / 75);
if (!_vm->_game->_infogrames->load(fileName)) {
warning("Couldn't load infogrames music");
delete _vm->_game->_infogrames;