diff options
author | Filippos Karapetis | 2011-11-04 00:32:12 +0200 |
---|---|---|
committer | Filippos Karapetis | 2011-11-04 00:42:40 +0200 |
commit | e4d1a5da3d4e69c59a769a728d29ec67a2c4f3d7 (patch) | |
tree | e5b21d84ac75db4ae93d92c138a64ccd5e7ffd44 /audio/decoders | |
parent | 747ebffd17eb64423fd8fb321f9d803ec31105f4 (diff) | |
download | scummvm-rg350-e4d1a5da3d4e69c59a769a728d29ec67a2c4f3d7.tar.gz scummvm-rg350-e4d1a5da3d4e69c59a769a728d29ec67a2c4f3d7.tar.bz2 scummvm-rg350-e4d1a5da3d4e69c59a769a728d29ec67a2c4f3d7.zip |
QDM2: Removed superfluous parentheses
Diffstat (limited to 'audio/decoders')
-rw-r--r-- | audio/decoders/qdm2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |