aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge
diff options
context:
space:
mode:
authorTorbjörn Andersson2017-08-06 13:30:51 +0200
committerTorbjörn Andersson2017-08-06 13:30:51 +0200
commit70a2ca8b7d64e993fdab89c7b8b0d30ab4334824 (patch)
tree2e0686f9a69dc65cf8f2aeb801ccae8f2352b635 /engines/sludge
parent38a8015b830f8cec32f07bb9262d47cf096644e5 (diff)
downloadscummvm-rg350-70a2ca8b7d64e993fdab89c7b8b0d30ab4334824.tar.gz
scummvm-rg350-70a2ca8b7d64e993fdab89c7b8b0d30ab4334824.tar.bz2
scummvm-rg350-70a2ca8b7d64e993fdab89c7b8b0d30ab4334824.zip
JANITORIAL: Silence more GCC 7 warnings
All these fall through were marked as deliberate, so again I've only changed the comment to silence GCC.
Diffstat (limited to 'engines/sludge')
-rw-r--r--engines/sludge/builtin.cpp4
-rw-r--r--engines/sludge/sludger.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/sludge/builtin.cpp b/engines/sludge/builtin.cpp
index 6d7d571638..d5d549fe78 100644
--- a/engines/sludge/builtin.cpp
+++ b/engines/sludge/builtin.cpp
@@ -145,7 +145,7 @@ static BuiltReturn sayCore(int numParams, LoadedFunction *fun, bool sayIt) {
if (!getValueType(fileNum, SVT_FILE, fun->stack->thisVar))
return BR_ERROR;
trimStack(fun->stack);
- // No break; here
+ // fall through
case 2:
newText = getTextFromAnyVar(fun->stack->thisVar);
@@ -1263,7 +1263,7 @@ builtIn(setLightMap) {
return BR_ERROR;
trimStack(fun->stack);
g_sludge->_gfxMan->_lightMapMode %= LIGHTMAPMODE_NUM;
- // No break;
+ // fall through
case 1:
if (fun->stack->thisVar.varType == SVT_FILE) {
diff --git a/engines/sludge/sludger.cpp b/engines/sludge/sludger.cpp
index 5e00996fbf..930c26d96b 100644
--- a/engines/sludge/sludger.cpp
+++ b/engines/sludge/sludger.cpp
@@ -476,7 +476,7 @@ bool continueFunction(LoadedFunction *fun) {
case BR_PAUSE:
pauseFunction(fun);
- // No break!
+ // fall through
case BR_KEEP_AND_PAUSE:
keepLooping = false;