SKY: Consistentcy in keymapper action names

This commit is contained in:
Eugene Sandulenko 2024-10-10 14:46:04 +02:00
parent db1b7a47fa
commit 4b6fd4f516
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -128,12 +128,12 @@ Common::KeymapArray SkyMetaEngine::initKeymaps(const char *target) const {
act->addDefaultInputMapping("p");
shortcutsKeymap->addAction(act);
act = new Action("FAST", _("Toggle fast mode"));
act = new Action("FAST", _("Toggle fast mode on/off"));
act->setCustomEngineActionEvent(kSkyActionToggleFastMode);
act->addDefaultInputMapping("C+f");
shortcutsKeymap->addAction(act);
act = new Action("RFAST", _("Toggle really fast mode"));
act = new Action("RFAST", _("Toggle really fast mode on/off"));
act->setCustomEngineActionEvent(kSkyActionToggleReallyFastMode);
act->addDefaultInputMapping("C+g");
shortcutsKeymap->addAction(act);