From b05eb4eed3f4cee4b7dacd4ef3a26a9bf1daff41 Mon Sep 17 00:00:00 2001 From: Anthony Calosa Date: Thu, 17 Jul 2025 19:17:36 +0800 Subject: [PATCH] fix GamePad mapping --- forge-gui-mobile/src/forge/adventure/util/KeyBinding.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui-mobile/src/forge/adventure/util/KeyBinding.java b/forge-gui-mobile/src/forge/adventure/util/KeyBinding.java index 5e122b66db4..cb103c6b8a9 100644 --- a/forge-gui-mobile/src/forge/adventure/util/KeyBinding.java +++ b/forge-gui-mobile/src/forge/adventure/util/KeyBinding.java @@ -21,7 +21,7 @@ public enum KeyBinding { ExitToWorldMap("ExitToWorldMap", new int[]{Input.Keys.F4, Input.Keys.BUTTON_L2}), Bookmark("Bookmark", new int[]{Input.Keys.B, Input.Keys.BUTTON_R2}), Use("Use", new int[]{Input.Keys.ENTER, Input.Keys.BUTTON_A}), - Enter("Enter", new int[]{Input.Keys.ENTER}), + Enter("Enter", new int[]{Input.Keys.ENTER, Input.Keys.BUTTON_START}), Back("Back", new int[]{Input.Keys.ESCAPE, Input.Keys.BUTTON_B, Input.Keys.BACK}), ScrollUp("ScrollUp", new int[]{Input.Keys.PAGE_UP, Input.Keys.BUTTON_L1}), ScrollDown("ScrollDown", new int[]{Input.Keys.PAGE_DOWN, Input.Keys.BUTTON_R1}),