CINE: Add missing break

This commit is contained in:
Torbjörn Andersson 2024-07-27 10:45:16 +02:00
parent 8d4b8d2c70
commit 144ccbda9f

View File

@ -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: