From 567054d8298a013f93dd9e0e332e2a08402b10a6 Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Sun, 31 Jul 2016 08:55:12 +0200 Subject: AUDIO: Fix build --- audio/decoders/qdm2.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'audio') 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); -- cgit v1.2.3