diff options
author | D G Turner | 2018-11-13 08:37:03 +0000 |
---|---|---|
committer | D G Turner | 2018-11-13 08:37:03 +0000 |
commit | 2f9ffda45673c7c240577600fc2499035fb25659 (patch) | |
tree | 17e284534365612e80d3741f86a43c6ef169a43b /engines/mohawk | |
parent | 509fe6f3c2def28a32961f065a20e55a280534b3 (diff) | |
download | scummvm-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.cpp | 2 |
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; |