[Scummvm-git-logs] scummvm master -> 5e10cd959534f3009b3b96cb028fd4cd5610c717
bluegr
noreply at scummvm.org
Sun Mar 15 19:19:56 UTC 2026
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:
5e10cd9595 MTROPOLIS: resolve key mapping mismatch for ARROWDOWN and DEL
Commit: 5e10cd959534f3009b3b96cb028fd4cd5610c717
https://github.com/scummvm/scummvm/commit/5e10cd959534f3009b3b96cb028fd4cd5610c717
Author: Michael (michael_kuerbis at web.de)
Date: 2026-03-15T21:19:52+02:00
Commit Message:
MTROPOLIS: resolve key mapping mismatch for ARROWDOWN and DEL
Changed paths:
engines/mtropolis/modifiers.cpp
diff --git a/engines/mtropolis/modifiers.cpp b/engines/mtropolis/modifiers.cpp
index 48f388fae69..70051fcf1cf 100644
--- a/engines/mtropolis/modifiers.cpp
+++ b/engines/mtropolis/modifiers.cpp
@@ -2433,6 +2433,9 @@ bool KeyboardMessengerModifier::checkKeyEventTrigger(Runtime *runtime, Common::E
resolvedType = kArrowUp;
break;
case Common::KEYCODE_DOWN:
+ resolvedType = kArrowDown;
+ break;
+ case Common::KEYCODE_DELETE:
resolvedType = kDelete;
break;
default:
More information about the Scummvm-git-logs
mailing list