[Scummvm-git-logs] scummvm master -> b5b958d8f23fd0c3e434f0ee17ec168d74b90997
digitall
noreply at scummvm.org
Tue Sep 2 22:11:22 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b5b958d8f2 PETKA: Fix Unintended Fallthrough From Custom Keymapper Event
Commit: b5b958d8f23fd0c3e434f0ee17ec168d74b90997
https://github.com/scummvm/scummvm/commit/b5b958d8f23fd0c3e434f0ee17ec168d74b90997
Author: D G Turner (digitall at scummvm.org)
Date: 2025-09-02T23:10:13+01:00
Commit Message:
PETKA: Fix Unintended Fallthrough From Custom Keymapper Event
Changed paths:
engines/petka/q_system.cpp
diff --git a/engines/petka/q_system.cpp b/engines/petka/q_system.cpp
index 84498dce01f..e6f98e99e2e 100644
--- a/engines/petka/q_system.cpp
+++ b/engines/petka/q_system.cpp
@@ -419,6 +419,7 @@ void QSystem::onEvent(const Common::Event &event) {
default:
break;
}
+ break;
case Common::EVENT_KEYDOWN:
if (event.kbd.keycode == Common::KEYCODE_r)
if (event.kbd.flags & Common::KBD_ALT) {
More information about the Scummvm-git-logs
mailing list