diff options
author | Matthew Hoops | 2011-08-08 21:36:50 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-08-08 21:36:50 -0400 |
commit | 677aa783707c566feea50608e2f0ba669037888b (patch) | |
tree | 8bed08790a96c7c25a5355a20fe00e7be30aed69 /engines/tinsel/adpcm.cpp | |
parent | 9c52724ce56c16c7fe1e9fdd3532d7e14b53c238 (diff) | |
parent | dbceb0a77d64d6e16b0186417ab92c425eddb173 (diff) | |
download | scummvm-rg350-677aa783707c566feea50608e2f0ba669037888b.tar.gz scummvm-rg350-677aa783707c566feea50608e2f0ba669037888b.tar.bz2 scummvm-rg350-677aa783707c566feea50608e2f0ba669037888b.zip |
Merge remote branch 'upstream/master' into soccer
Diffstat (limited to 'engines/tinsel/adpcm.cpp')
-rw-r--r-- | engines/tinsel/adpcm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/adpcm.cpp b/engines/tinsel/adpcm.cpp index 4ea835586b..ca3150ca3d 100644 --- a/engines/tinsel/adpcm.cpp +++ b/engines/tinsel/adpcm.cpp @@ -61,7 +61,7 @@ void Tinsel_ADPCMStream::readBufferTinselHeader() { int16 Tinsel_ADPCMStream::decodeTinsel(int16 code, double eVal) { double sample; - sample = (double) code; + sample = (double)code; sample *= eVal * _status.predictor; sample += (_status.d0 * _status.K0) + (_status.d1 * _status.K1); |