diff options
author | Max Horn | 2011-07-12 11:27:53 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-08-08 20:33:33 +0200 |
commit | 321c0ce027c00efcd02646fe914a9d23d19560a9 (patch) | |
tree | 63344081bf451e42458b93ca0be57660cdcdddd3 /engines/tinsel | |
parent | fdb2f735dc325269e006a7eb87472c7e3a3ac61f (diff) | |
download | scummvm-rg350-321c0ce027c00efcd02646fe914a9d23d19560a9.tar.gz scummvm-rg350-321c0ce027c00efcd02646fe914a9d23d19560a9.tar.bz2 scummvm-rg350-321c0ce027c00efcd02646fe914a9d23d19560a9.zip |
TINSEL: Code formatting
Diffstat (limited to 'engines/tinsel')
-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); |