[Scummvm-git-logs] scummvm master -> 31b4710996af800f2718bafdb199f37669e97a75

neuromancer noreply at scummvm.org
Wed Dec 11 08:16:19 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
31b4710996 FREESCAPE: added missing turn back key to the input map


Commit: 31b4710996af800f2718bafdb199f37669e97a75
    https://github.com/scummvm/scummvm/commit/31b4710996af800f2718bafdb199f37669e97a75
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2024-12-11T09:17:23+01:00

Commit Message:
FREESCAPE: added missing turn back key to the input map

Changed paths:
    engines/freescape/movement.cpp


diff --git a/engines/freescape/movement.cpp b/engines/freescape/movement.cpp
index 204ca5905cc..e2e4b17dbbc 100644
--- a/engines/freescape/movement.cpp
+++ b/engines/freescape/movement.cpp
@@ -79,6 +79,11 @@ void FreescapeEngine::initKeymaps(Common::Keymap *engineKeyMap, Common::Keymap *
 	act->addDefaultInputMapping("l");
 	engineKeyMap->addAction(act);
 
+	act = new Common::Action("TURNB", _("Turn back"));
+	act->setCustomEngineActionEvent(kActionTurnBack);
+	act->addDefaultInputMapping("u");
+	engineKeyMap->addAction(act);
+
 	act = new Common::Action("SKIP", _("Skip"));
 	act->setCustomEngineActionEvent(kActionSkip);
 	act->addDefaultInputMapping("SPACE");




More information about the Scummvm-git-logs mailing list