aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2011-07-12 11:27:53 +0200
committerJohannes Schickel2011-08-08 20:33:33 +0200
commit321c0ce027c00efcd02646fe914a9d23d19560a9 (patch)
tree63344081bf451e42458b93ca0be57660cdcdddd3
parentfdb2f735dc325269e006a7eb87472c7e3a3ac61f (diff)
downloadscummvm-rg350-321c0ce027c00efcd02646fe914a9d23d19560a9.tar.gz
scummvm-rg350-321c0ce027c00efcd02646fe914a9d23d19560a9.tar.bz2
scummvm-rg350-321c0ce027c00efcd02646fe914a9d23d19560a9.zip
TINSEL: Code formatting
-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);