[Scummvm-git-logs] scummvm master -> 02b0508d7d3974456c9883b6e7e52c7dbfc92c10

sev- noreply at scummvm.org
Thu Jan 22 20:36:39 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:
02b0508d7d SHERLOCK: More normalization for keymapper actions


Commit: 02b0508d7d3974456c9883b6e7e52c7dbfc92c10
    https://github.com/scummvm/scummvm/commit/02b0508d7d3974456c9883b6e7e52c7dbfc92c10
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-01-22T21:36:05+01:00

Commit Message:
SHERLOCK: More normalization for keymapper actions

Changed paths:
    engines/sherlock/metaengine.cpp


diff --git a/engines/sherlock/metaengine.cpp b/engines/sherlock/metaengine.cpp
index 1cadf32439c..65b068a0e3e 100644
--- a/engines/sherlock/metaengine.cpp
+++ b/engines/sherlock/metaengine.cpp
@@ -1212,14 +1212,14 @@ Common::KeymapArray SherlockMetaEngine::initKeymaps(const char *target) const {
 		tattooPasswordKeymap->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 password input field
-		act = new Action("GOSTART", _("Go to the line start"));
+		act = new Action("GOSTART", _("Go to start of line"));
 		act->setCustomEngineActionEvent(kActionTattooPasswordStart);
 		act->addDefaultInputMapping("HOME");
 		act->addDefaultInputMapping("KP7");
 		tattooPasswordKeymap->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 password input field
-		act = new Action("GOEND", _("Go to the line end"));
+		act = new Action("GOEND", _("Go to end of line"));
 		act->setCustomEngineActionEvent(kActionTattooPasswordEnd);
 		act->addDefaultInputMapping("END");
 		act->addDefaultInputMapping("KP1");




More information about the Scummvm-git-logs mailing list