From e4d1a5da3d4e69c59a769a728d29ec67a2c4f3d7 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 4 Nov 2011 00:32:12 +0200 Subject: QDM2: Removed superfluous parentheses --- audio/decoders/qdm2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/decoders/qdm2.cpp b/audio/decoders/qdm2.cpp index 19b30217e9..113b88fbf6 100644 --- a/audio/decoders/qdm2.cpp +++ b/audio/decoders/qdm2.cpp @@ -1832,7 +1832,7 @@ QDM2Stream::QDM2Stream(Common::SeekableReadStream *extraData, DisposeAfterUse::F _subSampling = _fftOrder - 7; _frequencyRange = 255 / (1 << (2 - _subSampling)); - switch ((_subSampling * 2 + _channels - 1)) { + switch (_subSampling * 2 + _channels - 1) { case 0: tmp = 40; break; -- cgit v1.2.3