From 28987e3c40cd6d6cb6483a845171a84051385862 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 3 Sep 2022 12:52:42 -0400 Subject: [PATCH] v1.4.0: adjusted controller default keybinds --- .../com/shatteredpixel/shatteredpixeldungeon/SPDAction.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDAction.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDAction.java index 78acd5aaa..e1ab8afc1 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDAction.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDAction.java @@ -155,16 +155,16 @@ public class SPDAction extends GameAction { private static final LinkedHashMap defaultControllerBindings = new LinkedHashMap<>(); static { defaultControllerBindings.put( Input.Keys.BUTTON_START, SPDAction.BACK ); + defaultControllerBindings.put( Input.Keys.BUTTON_SELECT, SPDAction.JOURNAL ); defaultControllerBindings.put( Input.Keys.BUTTON_R2, SPDAction.LEFT_CLICK ); defaultControllerBindings.put( Input.Keys.BUTTON_THUMBR, SPDAction.LEFT_CLICK ); defaultControllerBindings.put( Input.Keys.BUTTON_L2, SPDAction.RIGHT_CLICK ); - defaultControllerBindings.put( Input.Keys.BUTTON_SELECT, SPDAction.MIDDLE_CLICK ); defaultControllerBindings.put( Input.Keys.DPAD_UP+1000, SPDAction.TAG_ACTION ); - defaultControllerBindings.put( Input.Keys.DPAD_LEFT+1000, SPDAction.CYCLE); + defaultControllerBindings.put( Input.Keys.DPAD_LEFT+1000, SPDAction.TAG_LOOT ); defaultControllerBindings.put( Input.Keys.DPAD_DOWN+1000, SPDAction.TAG_RESUME ); - defaultControllerBindings.put( Input.Keys.DPAD_RIGHT+1000, SPDAction.TAG_LOOT ); + defaultControllerBindings.put( Input.Keys.DPAD_RIGHT+1000, SPDAction.CYCLE ); defaultControllerBindings.put( Input.Keys.BUTTON_THUMBL, SPDAction.WAIT_OR_PICKUP );