From 1948ed3e16cb085995cde198035d6d01385403e5 Mon Sep 17 00:00:00 2001 From: user670 <22617255+user670@users.noreply.github.com> Date: Tue, 30 Nov 2021 01:42:02 +0800 Subject: [PATCH] Update gameTables.lua (#508) On an XBox controller, B is on the right and A is on the bottom (unlike a Nintendo controller), and it makes more sense to default B to rotate right and A to rotate left. --- parts/gameTables.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parts/gameTables.lua b/parts/gameTables.lua index a29151a0..ae7b4173 100644 --- a/parts/gameTables.lua +++ b/parts/gameTables.lua @@ -675,7 +675,7 @@ do--Userdata tables r=0, }, joystick={ - dpleft=1,dpright=2,a=3,b=4,y=5, + dpleft=1,dpright=2,b=3,a=4,y=5, dpup=6,dpdown=7,rightshoulder=8,x=9, leftshoulder=0, }, @@ -722,4 +722,4 @@ do--Userdata tables date=false, todayTime=0, } -end \ No newline at end of file +end