[Scummvm-git-logs] scummvm master -> 2f9ffda45673c7c240577600fc2499035fb25659
digitall
dgturner at iee.org
Tue Nov 13 09:37:30 CET 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
2f9ffda456 MOHAWK: Fix Fall Through Compiler Warning.
Commit: 2f9ffda45673c7c240577600fc2499035fb25659
https://github.com/scummvm/scummvm/commit/2f9ffda45673c7c240577600fc2499035fb25659
Author: D G Turner (digitall at scummvm.org)
Date: 2018-11-13T08:37:03Z
Commit Message:
MOHAWK: Fix Fall Through Compiler Warning.
Changed paths:
engines/mohawk/cstime_view.cpp
diff --git a/engines/mohawk/cstime_view.cpp b/engines/mohawk/cstime_view.cpp
index 8727560..310da16 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;
More information about the Scummvm-git-logs
mailing list