aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/adpcm.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2011-08-08 21:36:50 -0400
committerMatthew Hoops2011-08-08 21:36:50 -0400
commit677aa783707c566feea50608e2f0ba669037888b (patch)
tree8bed08790a96c7c25a5355a20fe00e7be30aed69 /engines/tinsel/adpcm.cpp
parent9c52724ce56c16c7fe1e9fdd3532d7e14b53c238 (diff)
parentdbceb0a77d64d6e16b0186417ab92c425eddb173 (diff)
downloadscummvm-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.cpp2
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);