aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2016-07-31 08:55:12 +0200
committerWillem Jan Palenstijn2016-07-31 08:55:12 +0200
commit567054d8298a013f93dd9e0e332e2a08402b10a6 (patch)
treea5b9cb5b7fba1a9c49fe481214bc29e3822c5734 /audio
parent2b5da612869cbcfeaaf858a32d27309bd4fcf7cd (diff)
downloadscummvm-rg350-567054d8298a013f93dd9e0e332e2a08402b10a6.tar.gz
scummvm-rg350-567054d8298a013f93dd9e0e332e2a08402b10a6.tar.bz2
scummvm-rg350-567054d8298a013f93dd9e0e332e2a08402b10a6.zip
AUDIO: Fix build
Diffstat (limited to 'audio')
-rw-r--r--audio/decoders/qdm2.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/decoders/qdm2.cpp b/audio/decoders/qdm2.cpp
index 4e24e7fde7..a2f4326152 100644
--- a/audio/decoders/qdm2.cpp
+++ b/audio/decoders/qdm2.cpp
@@ -1666,8 +1666,7 @@ void QDM2Stream::synthfilt_build_sb_samples(Common::BitStream *gb, int length, i
for (k = 0; k < 5; k++) {
if ((j + 2 * k) >= 128)
break;
- samples[2 * k] = gb->getBit() ? dequant_1bit[joined_stereo][2 * gb->getBit()] : 0;
- }
+ samples[2 * k] = gb->getBit() ? dequant_1bit[joined_stereo][2 * gb->getBit()] : 0;
}
} else {
n = gb->getBits(8);