[Scummvm-cvs-logs] scummvm master -> 567054d8298a013f93dd9e0e332e2a08402b10a6

wjp wjp at usecode.org
Sun Jul 31 08:56:03 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
567054d829 AUDIO: Fix build


Commit: 567054d8298a013f93dd9e0e332e2a08402b10a6
    https://github.com/scummvm/scummvm/commit/567054d8298a013f93dd9e0e332e2a08402b10a6
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2016-07-31T08:55:12+02:00

Commit Message:
AUDIO: Fix build

Changed paths:
    audio/decoders/qdm2.cpp



diff --git a/audio/decoders/qdm2.cpp b/audio/decoders/qdm2.cpp
index 4e24e7f..a2f4326 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);






More information about the Scummvm-git-logs mailing list