aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorD G Turner2019-10-04 04:27:03 +0100
committerD G Turner2019-10-04 04:27:03 +0100
commitcee1b56f3a245a20694de4948270f8726db42a79 (patch)
tree6c6b9048ce1d46325387537b97a3666b99f99dd2 /common
parent4d911012e26eb9fc2098d586b0c2108667d3c2af (diff)
downloadscummvm-rg350-cee1b56f3a245a20694de4948270f8726db42a79.tar.gz
scummvm-rg350-cee1b56f3a245a20694de4948270f8726db42a79.tar.bz2
scummvm-rg350-cee1b56f3a245a20694de4948270f8726db42a79.zip
COMMON: Add Missing Default Switch Cases in DCT Class
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'common')
-rw-r--r--common/dct.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/dct.cpp b/common/dct.cpp
index 374eee03fc..390c52af0f 100644
--- a/common/dct.cpp
+++ b/common/dct.cpp
@@ -62,6 +62,8 @@ void DCT::calc(float *data) {
case DST_I:
calcDSTI(data);
break;
+ default:
+ break;
}
}