[Scummvm-git-logs] scummvm master -> c5fba54c01b7ea86529d83e9211dca6e26a46a54
sev-
noreply at scummvm.org
Tue Feb 3 20:19:42 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:
c5fba54c01 MAEMO: Normalized keymapper action names
Commit: c5fba54c01b7ea86529d83e9211dca6e26a46a54
https://github.com/scummvm/scummvm/commit/c5fba54c01b7ea86529d83e9211dca6e26a46a54
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-02-03T21:19:34+01:00
Commit Message:
MAEMO: Normalized keymapper action names
Changed paths:
backends/platform/maemo/maemo.cpp
diff --git a/backends/platform/maemo/maemo.cpp b/backends/platform/maemo/maemo.cpp
index 3df799314c6..934dd32ccc2 100644
--- a/backends/platform/maemo/maemo.cpp
+++ b/backends/platform/maemo/maemo.cpp
@@ -158,15 +158,15 @@ Common::KeymapArray OSystem_SDL_Maemo::getGlobalKeymaps() {
act->setCustomBackendActionEvent(Maemo::kEventClickMode);
globalMap->addAction(act);
- act = new Action(kStandardActionLeftClick, _("Left Click"));
+ act = new Action(kStandardActionLeftClick, _("Left click"));
act->setLeftClickEvent();
globalMap->addAction(act);
- act = new Action(kStandardActionMiddleClick, _("Middle Click"));
+ act = new Action(kStandardActionMiddleClick, _("Middle click"));
act->setMiddleClickEvent();
globalMap->addAction(act);
- act = new Action(kStandardActionRightClick, _("Right Click"));
+ act = new Action(kStandardActionRightClick, _("Right click"));
act->setRightClickEvent();
globalMap->addAction(act);
More information about the Scummvm-git-logs
mailing list