diff --git a/src/game/joystick_ch_flightstick_pro.c b/src/game/joystick_ch_flightstick_pro.c index 0c318555a..5c35b85a8 100644 --- a/src/game/joystick_ch_flightstick_pro.c +++ b/src/game/joystick_ch_flightstick_pro.c @@ -239,7 +239,7 @@ const joystick_t joystick_ch_flightstick = { .pov_count = 0, .max_joysticks = 1, .axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle" }, - .button_names = { "Button 1", "Button 2" }, + .button_names = { "Trigger", "Button 2" }, .pov_names = { NULL } }; @@ -257,7 +257,7 @@ const joystick_t joystick_ch_flightstick_ch_pedals = { .pov_count = 0, .max_joysticks = 1, .axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle", "Rudder (Yaw)" }, - .button_names = { "Button 1", "Button 2" }, + .button_names = { "Trigger", "Button 2" }, .pov_names = { NULL } }; @@ -275,7 +275,7 @@ const joystick_t joystick_ch_flightstick_ch_pedals_pro = { .pov_count = 0, .max_joysticks = 1, .axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Right Pedal", "Left Pedal" }, - .button_names = { "Button 1", "Button 2" }, + .button_names = { "Trigger", "Button 2" }, .pov_names = { NULL } }; @@ -293,7 +293,7 @@ const joystick_t joystick_ch_flightstick_pro = { .pov_count = 1, .max_joysticks = 1, .axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle" }, - .button_names = { "Button 1", "Button 2", "Button 3", "Button 4" }, + .button_names = { "Trigger", "Button 2", "Button 3", "Button 4" }, .pov_names = { "POV" } }; @@ -311,7 +311,7 @@ const joystick_t joystick_ch_flightstick_pro_ch_pedals = { .pov_count = 1, .max_joysticks = 1, .axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle", "Rudder (Yaw)" }, - .button_names = { "Button 1", "Button 2", "Button 3", "Button 4" }, + .button_names = { "Trigger", "Button 2", "Button 3", "Button 4" }, .pov_names = { "POV" } }; @@ -329,7 +329,7 @@ const joystick_t joystick_ch_flightstick_pro_ch_pedals_pro = { .pov_count = 1, .max_joysticks = 1, .axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Right Pedal", "Left Pedal" }, - .button_names = { "Button 1", "Button 2", "Button 3", "Button 4" }, + .button_names = { "Trigger", "Button 2", "Button 3", "Button 4" }, .pov_names = { "POV" } }; diff --git a/src/game/joystick_standard.c b/src/game/joystick_standard.c index 8bb47937f..0876a21a2 100644 --- a/src/game/joystick_standard.c +++ b/src/game/joystick_standard.c @@ -765,7 +765,7 @@ const joystick_t joystick_3button_yoke_throttle = { .pov_count = 0, .max_joysticks = 1, .axis_names = { "Roll axis", "Pitch axis", "Throttle axis" }, - .button_names = { "Button 1", "Button 2", "Button 3" }, + .button_names = { "Trigger", "Button 2", "Button 3" }, .pov_names = { NULL } }; @@ -783,7 +783,7 @@ const joystick_t joystick_4button_yoke_throttle = { .pov_count = 0, .max_joysticks = 1, .axis_names = { "Roll axis", "Pitch axis", "Throttle axis" }, - .button_names = { "Button 1", "Button 2", "Button 3", "Button 4" }, + .button_names = { "Trigger", "Button 2", "Button 3", "Button 4" }, .pov_names = { NULL } }; diff --git a/src/game/joystick_tm_fcs.c b/src/game/joystick_tm_fcs.c index c8368612d..93f54db36 100644 --- a/src/game/joystick_tm_fcs.c +++ b/src/game/joystick_tm_fcs.c @@ -167,7 +167,7 @@ const joystick_t joystick_tm_fcs = { .pov_count = 1, .max_joysticks = 1, .axis_names = { "X axis", "Y axis" }, - .button_names = { "Button 1", "Button 2", "Button 3", "Button 4" }, + .button_names = { "Trigger", "Button 2", "Button 3", "Button 4" }, .pov_names = { "POV" } }; @@ -185,6 +185,6 @@ const joystick_t joystick_tm_fcs_rcs = { .pov_count = 1, .max_joysticks = 1, .axis_names = { "X axis", "Y axis", "Rudder" }, - .button_names = { "Button 1", "Button 2", "Button 3", "Button 4" }, + .button_names = { "Trigger", "Button 2", "Button 3", "Button 4" }, .pov_names = { "POV" } };