[Scummvm-git-logs] scummvm master -> 144ccbda9fe9b4130b92125bac6afa4757f14038
eriktorbjorn
noreply at scummvm.org
Sat Jul 27 08:46:48 UTC 2024
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:
144ccbda9f CINE: Add missing break
Commit: 144ccbda9fe9b4130b92125bac6afa4757f14038
https://github.com/scummvm/scummvm/commit/144ccbda9fe9b4130b92125bac6afa4757f14038
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2024-07-27T10:46:17+02:00
Commit Message:
CINE: Add missing break
Changed paths:
engines/cine/main_loop.cpp
diff --git a/engines/cine/main_loop.cpp b/engines/cine/main_loop.cpp
index 2c77d3378c5..4aa27479703 100644
--- a/engines/cine/main_loop.cpp
+++ b/engines/cine/main_loop.cpp
@@ -180,11 +180,13 @@ static void processEvent(Common::Event &event) {
case kActionMouseLeft:
if (allowPlayerInput) {
mouseLeft = 0;
- } break;
+ }
+ break;
case kActionMouseRight:
if (allowPlayerInput) {
mouseRight = 0;
}
+ break;
case kActionMoveUp:
case kActionMoveDown:
case kActionMoveLeft:
More information about the Scummvm-git-logs
mailing list