aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/player_v4a.cpp
diff options
context:
space:
mode:
authorNorbert Lange2009-07-31 14:29:04 +0000
committerNorbert Lange2009-07-31 14:29:04 +0000
commita4ebf2cfa693f84f535d7b1a47511004b0678d06 (patch)
treecb21b260c738e99e1d8fb13573e20ff44bd8815d /engines/scumm/player_v4a.cpp
parenta7b419149c3da9ac82f88031b92e666c12e35151 (diff)
downloadscummvm-rg350-a4ebf2cfa693f84f535d7b1a47511004b0678d06.tar.gz
scummvm-rg350-a4ebf2cfa693f84f535d7b1a47511004b0678d06.tar.bz2
scummvm-rg350-a4ebf2cfa693f84f535d7b1a47511004b0678d06.zip
using accessmodifiers in Tfmx now and removed/disabled functions that now dont work anymore (the commandline utility cant be compiled anymore as result of this)
added arraysize of external signals and check it before accesses moved 2 debug-functions into Tfmx.cpp, removed depencies to files in the tfmx folder moved common code for fade-effects in a seperate method svn-id: r42961
Diffstat (limited to 'engines/scumm/player_v4a.cpp')
-rw-r--r--engines/scumm/player_v4a.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/player_v4a.cpp b/engines/scumm/player_v4a.cpp
index 7c3aab0462..7c2b17ac3c 100644
--- a/engines/scumm/player_v4a.cpp
+++ b/engines/scumm/player_v4a.cpp
@@ -49,7 +49,7 @@ bool Player_V4A::init() {
if (mdatExists && sampleExists) {
Audio::Tfmx *play = new Audio::Tfmx(_mixer->getOutputRate(), true);
if (play->load(fileMdat, fileSample)) {
- play->setSignalPtr(_signal);
+ play->setSignalPtr(_signal, ARRAYSIZE(_signal));
_tfmxPlay = play;
} else
delete play;