aboutsummaryrefslogtreecommitdiff
path: root/audio/decoders
diff options
context:
space:
mode:
authorD G Turner2019-11-28 14:38:43 +0000
committerD G Turner2019-11-28 14:38:43 +0000
commit3959797b85430b5ae0e2a9a9e182582bdf889723 (patch)
tree1a6cb0ecd64e4fc51426d5833136864cda622b47 /audio/decoders
parent8e2f48636a4dbb926c12e49c6288216f93542015 (diff)
downloadscummvm-rg350-3959797b85430b5ae0e2a9a9e182582bdf889723.tar.gz
scummvm-rg350-3959797b85430b5ae0e2a9a9e182582bdf889723.tar.bz2
scummvm-rg350-3959797b85430b5ae0e2a9a9e182582bdf889723.zip
AUDIO: Fix Remaining Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'audio/decoders')
-rw-r--r--audio/decoders/qdm2.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/audio/decoders/qdm2.cpp b/audio/decoders/qdm2.cpp
index ed1c014a34..a9cf30e9ef 100644
--- a/audio/decoders/qdm2.cpp
+++ b/audio/decoders/qdm2.cpp
@@ -1552,6 +1552,9 @@ void QDM2Stream::fill_coding_method_array(sb_int8_array tone_level_idx, sb_int8_
case 4:
if (comp < 16)
comp = 16;
+ break;
+ default:
+ break;
}
if (comp <= 5)
tmp = 0;