[Scummvm-git-logs] scummvm branch-3-0 -> 57632a01cc1509c5e19fc2c2f547cb90d8dcf613
sev-
noreply at scummvm.org
Fri Jan 9 17:16:04 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:
57632a01cc SHERLOCK: Normalize keymapper actions
Commit: 57632a01cc1509c5e19fc2c2f547cb90d8dcf613
https://github.com/scummvm/scummvm/commit/57632a01cc1509c5e19fc2c2f547cb90d8dcf613
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-01-09T18:15:58+01:00
Commit Message:
SHERLOCK: Normalize keymapper actions
Changed paths:
engines/sherlock/metaengine.cpp
diff --git a/engines/sherlock/metaengine.cpp b/engines/sherlock/metaengine.cpp
index aa5136ce83a..9324b47cb1f 100644
--- a/engines/sherlock/metaengine.cpp
+++ b/engines/sherlock/metaengine.cpp
@@ -569,7 +569,7 @@ Common::KeymapArray SherlockMetaEngine::initKeymaps(const char *target) const {
scalpelInvKeymap->addAction(act);
// I18N: (Game: The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel) The game has an inventory, this action is go back a page (one page displays 6 items) in the inventory
- act = new Action("PAGE_LEFT", _("Go back a page"));
+ act = new Action("PAGE_LEFT", _("Previous page"));
act->setCustomEngineActionEvent(kActionScalpelInvPageLeft);
act->addDefaultInputMapping("COMMA");
act->addDefaultInputMapping("JOY_UP");
@@ -581,14 +581,14 @@ Common::KeymapArray SherlockMetaEngine::initKeymaps(const char *target) const {
act->addDefaultInputMapping("JOY_LEFT");
scalpelInvKeymap->addAction(act);
- act = new Action("RIGHT", _("Scroll Right"));
+ act = new Action("RIGHT", _("Scroll right"));
act->setCustomEngineActionEvent(kActionScalpelInvRight);
act->addDefaultInputMapping("PLUS");
act->addDefaultInputMapping("JOY_RIGHT");
scalpelInvKeymap->addAction(act);
// I18N: (Game: The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel) The game has an inventory, this action is go ahead a page (one page displays 6 items) in the inventory
- act = new Action("PAGE_RIGHT", _("Go ahead a page"));
+ act = new Action("PAGE_RIGHT", _("Next page"));
act->setCustomEngineActionEvent(kActionScalpelInvPageRight);
act->addDefaultInputMapping("PERIOD");
act->addDefaultInputMapping("JOY_DOWN");
More information about the Scummvm-git-logs
mailing list