[Scummvm-git-logs] scummvm master -> 7c0ab265b890bdfd901fd1eca44c43c231c0c73e
sev-
noreply at scummvm.org
Mon Aug 11 19:49:43 UTC 2025
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:
7c0ab265b8 I18N: QUEEN: Fix capitalization in keymapper action description
Commit: 7c0ab265b890bdfd901fd1eca44c43c231c0c73e
https://github.com/scummvm/scummvm/commit/7c0ab265b890bdfd901fd1eca44c43c231c0c73e
Author: aunnoman1 (aunnoman123 at outlook.com)
Date: 2025-08-11T21:49:39+02:00
Commit Message:
I18N: QUEEN: Fix capitalization in keymapper action description
Changed paths:
engines/queen/metaengine.cpp
diff --git a/engines/queen/metaengine.cpp b/engines/queen/metaengine.cpp
index 501b1b6b828..5d5028f5506 100644
--- a/engines/queen/metaengine.cpp
+++ b/engines/queen/metaengine.cpp
@@ -212,22 +212,22 @@ Common::KeymapArray QueenMetaEngine::initKeymaps(const char *target) const {
act->addDefaultInputMapping("JOY_DOWN");
gameKeymap->addAction(act);
- act = new Action("INVITEM1", _("inventory item 1"));
+ act = new Action("INVITEM1", _("Inventory item 1"));
act->setCustomEngineActionEvent(kActionInvSlot1);
act->addDefaultInputMapping("1");
gameKeymap->addAction(act);
- act = new Action("INVITEM2", _("inventory item 2"));
+ act = new Action("INVITEM2", _("Inventory item 2"));
act->setCustomEngineActionEvent(kActionInvSlot2);
act->addDefaultInputMapping("2");
gameKeymap->addAction(act);
- act = new Action("INVITEM3", _("inventory item 3"));
+ act = new Action("INVITEM3", _("Inventory item 3"));
act->setCustomEngineActionEvent(kActionInvSlot3);
act->addDefaultInputMapping("3");
gameKeymap->addAction(act);
- act = new Action("INVITEM4", _("inventory item 4"));
+ act = new Action("INVITEM4", _("Inventory item 4"));
act->setCustomEngineActionEvent(kActionInvSlot4);
act->addDefaultInputMapping("4");
gameKeymap->addAction(act);
More information about the Scummvm-git-logs
mailing list