Recent Bleeding Edge builds contains controller support, but not that easy to use. You canât configure it in the input configuration window. You need to manually edit the ini file instead. Open config/qt-config.ini
under the user directory, find the [Input]
section and replace the text below with
button_a="engine:sdl,joystick:0,button:1"
button_b="engine:sdl,joystick:0,button:0"
button_x="engine:sdl,joystick:0,button:3"
button_y="engine:sdl,joystick:0,button:2"
button_up="engine:sdl,joystick:0,hat:0,direction:up"
button_down="engine:sdl,joystick:0,hat:0,direction:down"
button_left="engine:sdl,joystick:0,hat:0,direction:left"
button_right="engine:sdl,joystick:0,hat:0,direction:right"
button_l="engine:sdl,joystick:0,button:4"
button_r="engine:sdl,joystick:0,button:5"
button_start="engine:sdl,joystick:0,button:7"
button_select="engine:sdl,joystick:0,button:6"
button_zl="engine:keyboard,code:49"
button_zr="engine:keyboard,code:50"
button_home="engine:keyboard,code:66"
circle_pad="axis_x:0,engine:sdl,joystick:0,axis_y:1"
c_stick="axis_x:3,engine:sdl,joystick:0,axis_y:4"
Note: the configuration above is for XBox controller. For other controllers like PS3 or PS4, you need to change the ID numbers after "button:"
. You need to figure out the right number for your controller yourself
For more info: https://github.com/citra-emu/citra/pull/2497