You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/controller-autoconfiguration.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ The matching algorithm considers several key factors:
15
15
16
16
Different controller drivers use these identifiers in various ways:
17
17
18
-
- The `android`, `udev`, and `sdl2` drivers can use either the Device Index (`input_device`) or a combination of Vendor ID (`input_vendor_id`) and Product ID (`input_product_id`). If the Device Index is configured incorrectly, the system will fall back on checking the Vendor ID and Product ID, and vice versa. References: input_autoconfigure_get_config_file_affinity in (task_autodetect.c)[https://github.com/libretro/RetroArch/blob/master/tasks/task_autodetect.c], and `input_autoconfigure_connect` in [android_input.c](https://github.com/libretro/RetroArch/blob/master/input/drivers/android_input.c), [sdl_joypad.c](https://github.com/libretro/RetroArch/blob/master/input/drivers_joypad/sdl_joypad.c), [udev_joypad.c](https://github.com/libretro/RetroArch/blob/master/input/drivers_joypad/udev_joypad.c).
18
+
- The `android`, `udev`, and `sdl2` drivers can use either the Device Index (`input_device`) or a combination of Vendor ID (`input_vendor_id`) and Product ID (`input_product_id`). If the Device Index is configured incorrectly, the system will fall back on checking the Vendor ID and Product ID, and vice versa. References: input_autoconfigure_get_config_file_affinity in [task_autodetect.c](https://github.com/libretro/RetroArch/blob/master/tasks/task_autodetect.c), and `input_autoconfigure_connect` in [android_input.c](https://github.com/libretro/RetroArch/blob/master/input/drivers/android_input.c), [sdl_joypad.c](https://github.com/libretro/RetroArch/blob/master/input/drivers_joypad/sdl_joypad.c), [udev_joypad.c](https://github.com/libretro/RetroArch/blob/master/input/drivers_joypad/udev_joypad.c).
19
19
- The `linuxraw` driver rely on the Device Index (input_device).
20
20
21
21
### Difference in input variable generation between linuxraw and udev.
@@ -278,8 +278,8 @@ To work around this issue, you need to manually edit the RetroArch config file t
278
278
input_l2_axis = "+X" (where X is the L2 axis number)
279
279
input_r2_axis = "+Y" (where Y is the R2 axis number)
280
280
281
-
input_l2_axis_label = "L2 Analog"
282
-
input_r2_axis_label = "R2 Analog"
281
+
input_l2_axis_label = "L2 Trigger"
282
+
input_r2_axis_label = "R2 Trigger"
283
283
```
284
284
285
285
For [example](https://github.com/libretro/retroarch-joypad-autoconfig/pull/1135), if L2 is axis 2 and R2 is axis 5, you would:
@@ -299,8 +299,8 @@ With
299
299
input_l2_axis = "+2"
300
300
input_r2_axis = "+5"
301
301
302
-
input_l2_axis_label = "L2 Analog"
303
-
input_r2_axis_label = "R2 Analog"
302
+
input_l2_axis_label = "L2 Trigger"
303
+
input_r2_axis_label = "R2 Trigger"
304
304
```
305
305
306
306
Note: These variable values are examples and should not be directly copied to your configuration file.
@@ -556,8 +556,8 @@ input_r_y_minus_axis_label = "Right Analog Y- (up)"
#### Example: Controllers for Sony PlayStation 2 and later
609
609
610
-
Labels for PlayStation controllers starting from PS2. Note that analog L2/R2 triggers (`input_l2_axis_label = "L2 Analog"`, and `input_r2_axis_label = "R2 Analog"`) are featured:
610
+
Labels for PlayStation controllers starting from PS2. Note that analog L2/R2 triggers (`input_l2_axis_label = "L2 Trigger"`, and `input_r2_axis_label = "R2 Trigger"`) are featured:
611
611
```
612
612
input_b_btn_label = "Cross"
613
613
input_y_btn_label = "Square"
@@ -621,8 +621,8 @@ input_a_btn_label = "Circle"
621
621
input_x_btn_label = "Triangle"
622
622
input_l_btn_label = "L1"
623
623
input_r_btn_label = "R1"
624
-
input_l2_axis_label = "L2 Analog"
625
-
input_r2_axis_label = "R2 Analog"
624
+
input_l2_axis_label = "L2 Trigger"
625
+
input_r2_axis_label = "R2 Trigger"
626
626
input_l3_btn_label = "L3"
627
627
input_r3_btn_label = "R3"
628
628
input_l_x_plus_axis_label = "Left Analog X+ (right)"
@@ -684,8 +684,8 @@ input_a_btn_label = "Circle"
684
684
input_x_btn_label = "Triangle"
685
685
input_l_btn_label = "L1"
686
686
input_r_btn_label = "R1"
687
-
input_l2_axis_label = "L2 Analog"
688
-
input_r2_axis_label = "R2 Analog"
687
+
input_l2_axis_label = "L2 Trigger"
688
+
input_r2_axis_label = "R2 Trigger"
689
689
input_l3_btn_label = "L3"
690
690
input_r3_btn_label = "R3"
691
691
input_l_x_plus_axis_label = "Left Analog X+ (right)"
0 commit comments