[Scummvm-git-logs] scummvm master -> 439c1b1667548827234526164b5c7b90c659ef0d

neuromancer noreply at scummvm.org
Tue Dec 9 14:51:51 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:
439c1b1667 FREESCAPE: adding missing alternative input mappings for mobile devices


Commit: 439c1b1667548827234526164b5c7b90c659ef0d
    https://github.com/scummvm/scummvm/commit/439c1b1667548827234526164b5c7b90c659ef0d
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2025-12-09T15:41:05+01:00

Commit Message:
FREESCAPE: adding missing alternative input mappings for mobile devices

Changed paths:
    engines/freescape/games/eclipse/eclipse.cpp


diff --git a/engines/freescape/games/eclipse/eclipse.cpp b/engines/freescape/games/eclipse/eclipse.cpp
index c1ce1017846..75b4448fe79 100644
--- a/engines/freescape/games/eclipse/eclipse.cpp
+++ b/engines/freescape/games/eclipse/eclipse.cpp
@@ -271,11 +271,13 @@ void EclipseEngine::initKeymaps(Common::Keymap *engineKeyMap, Common::Keymap *in
 
 	act = new Common::Action("TGGLHEIGHT", _("Toggle Height"));
 	act->setCustomEngineActionEvent(kActionToggleRiseLower);
+	act->addDefaultInputMapping("JOY_B");
 	act->addDefaultInputMapping("h");
 	engineKeyMap->addAction(act);
 
 	act = new Common::Action("REST", _("Rest"));
 	act->setCustomEngineActionEvent(kActionRest);
+	act->addDefaultInputMapping("JOY_Y");
 	act->addDefaultInputMapping("r");
 	engineKeyMap->addAction(act);
 




More information about the Scummvm-git-logs mailing list