[Scummvm-git-logs] scummvm master -> 6eee72312cf3cbf8378f7b0e2f38fd9ad4d0a1f9
sev-
noreply at scummvm.org
Wed Jan 21 22:17:18 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:
6eee72312c SHERLOCK: More normalization for keymapper action names
Commit: 6eee72312cf3cbf8378f7b0e2f38fd9ad4d0a1f9
https://github.com/scummvm/scummvm/commit/6eee72312cf3cbf8378f7b0e2f38fd9ad4d0a1f9
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-01-21T23:16:45+01:00
Commit Message:
SHERLOCK: More normalization for keymapper action names
Changed paths:
engines/sherlock/metaengine.cpp
diff --git a/engines/sherlock/metaengine.cpp b/engines/sherlock/metaengine.cpp
index 6ec6746770c..1cadf32439c 100644
--- a/engines/sherlock/metaengine.cpp
+++ b/engines/sherlock/metaengine.cpp
@@ -1107,14 +1107,14 @@ Common::KeymapArray SherlockMetaEngine::initKeymaps(const char *target) const {
tattooFilesNameKeymap->addAction(act);
// I18N: (Game name: The Lost Files of Sherlock Holmes: The Case of the Rose Tattoo) This action is used to go to the start of the save file name input field
- act = new Action("GOSTART", _("Go to the line start"));
+ act = new Action("GOSTART", _("Go to start of line"));
act->setCustomEngineActionEvent(kActionTattooFilesNameStart);
act->addDefaultInputMapping("HOME");
act->addDefaultInputMapping("KP7");
tattooFilesNameKeymap->addAction(act);
// I18N: (Game name: The Lost Files of Sherlock Holmes: The Case of the Rose Tattoo) This action is used to go to the end of the save file name input field
- act = new Action("GOEND", _("Go to the line end"));
+ act = new Action("GOEND", _("Go to end of line"));
act->setCustomEngineActionEvent(kActionTattooFilesNameEnd);
act->addDefaultInputMapping("END");
act->addDefaultInputMapping("KP1");
More information about the Scummvm-git-logs
mailing list