aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk
diff options
context:
space:
mode:
authorD G Turner2018-11-13 08:37:03 +0000
committerD G Turner2018-11-13 08:37:03 +0000
commit2f9ffda45673c7c240577600fc2499035fb25659 (patch)
tree17e284534365612e80d3741f86a43c6ef169a43b /engines/mohawk
parent509fe6f3c2def28a32961f065a20e55a280534b3 (diff)
downloadscummvm-rg350-2f9ffda45673c7c240577600fc2499035fb25659.tar.gz
scummvm-rg350-2f9ffda45673c7c240577600fc2499035fb25659.tar.bz2
scummvm-rg350-2f9ffda45673c7c240577600fc2499035fb25659.zip
MOHAWK: Fix Fall Through Compiler Warning.
Diffstat (limited to 'engines/mohawk')
-rw-r--r--engines/mohawk/cstime_view.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mohawk/cstime_view.cpp b/engines/mohawk/cstime_view.cpp
index 8727560094..310da16a23 100644
--- a/engines/mohawk/cstime_view.cpp
+++ b/engines/mohawk/cstime_view.cpp
@@ -305,6 +305,8 @@ void CSTimeModule::defaultMoveProc(Feature *feature) {
done = true;
break;
}
+ // fall through
+ // FIXME: Unclear if fall through is intentional...
case 0:
// TODO: set ptr +176 to 1
feature->_done = true;