[Scummvm-git-logs] scummvm master -> fcad0fe307539b98518c380d1e052b3a0a134498
sev-
sev at scummvm.org
Fri Aug 11 21:30:42 CEST 2017
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:
fcad0fe307 TEENAGENT: Fix fall through case statements
Commit: fcad0fe307539b98518c380d1e052b3a0a134498
https://github.com/scummvm/scummvm/commit/fcad0fe307539b98518c380d1e052b3a0a134498
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2017-08-11T21:30:13+02:00
Commit Message:
TEENAGENT: Fix fall through case statements
Changed paths:
engines/teenagent/scene.cpp
diff --git a/engines/teenagent/scene.cpp b/engines/teenagent/scene.cpp
index c250269..bea8953 100644
--- a/engines/teenagent/scene.cpp
+++ b/engines/teenagent/scene.cpp
@@ -538,10 +538,13 @@ bool Scene::processEvent(const Common::Event &event) {
default:
break;
}
+ break;
default:
return false;
}
+
+ return false;
}
struct ZOrderCmp {
More information about the Scummvm-git-logs
mailing list