From 2a4a6a7dc9146a34028518096c900d87d984939c Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Mon, 15 Oct 2018 12:58:14 +0200 Subject: [PATCH] Default button for run is 0 --- src/engine/controls/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/controls/mod.rs b/src/engine/controls/mod.rs index 81099fc..a30429e 100644 --- a/src/engine/controls/mod.rs +++ b/src/engine/controls/mod.rs @@ -204,7 +204,7 @@ impl GamepadMap { Some(GamepadMap { id: id, jump_button: 1, - run_button: 2, + run_button: 0, left_right_axis: Axis::X, }) }