Skip to content

Commit dd42d13

Browse files
committed
input_remap_ports_on_button_press -> input_assign_ports_on_button_press
1 parent 3fbb0af commit dd42d13

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

configuration.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@ static struct config_bool_setting *populate_settings_bool(
21782178
SETTING_BOOL("input_turbo_allow_dpad", &settings->bools.input_turbo_allow_dpad, true, DEFAULT_TURBO_ALLOW_DPAD, false);
21792179
SETTING_BOOL("input_auto_mouse_grab", &settings->bools.input_auto_mouse_grab, true, DEFAULT_INPUT_AUTO_MOUSE_GRAB, false);
21802180
SETTING_BOOL("input_remap_binds_enable", &settings->bools.input_remap_binds_enable, true, true, false);
2181-
SETTING_BOOL("input_remap_ports_on_button_press", &settings->bools.input_remap_ports_on_button_press, true, DEFAULT_INPUT_REMAP_PORTS_ON_BUTTON_PRESS, false);
2181+
SETTING_BOOL("input_assign_ports_on_button_press", &settings->bools.input_assign_ports_on_button_press, true, DEFAULT_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS, false);
21822182
SETTING_BOOL("input_remap_sort_by_controller_enable", &settings->bools.input_remap_sort_by_controller_enable, true, false, false);
21832183
SETTING_BOOL("input_hotkey_device_merge", &settings->bools.input_hotkey_device_merge, true, DEFAULT_INPUT_HOTKEY_DEVICE_MERGE, false);
21842184
SETTING_BOOL("input_hotkey_follows_player1", &settings->bools.input_hotkey_follows_player1, true, DEFAULT_INPUT_HOTKEY_FOLLOWS_PLAYER1, false);

intl/msg_hash_lbl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2171,8 +2171,8 @@ MSG_HASH(
21712171
"input_remap_binds_enable"
21722172
)
21732173
MSG_HASH(
2174-
MENU_ENUM_LABEL_INPUT_REMAP_PORTS_ON_BUTTON_PRESS,
2175-
"input_remap_ports_on_button_press"
2174+
MENU_ENUM_LABEL_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS,
2175+
"input_assign_ports_on_button_press"
21762176
)
21772177
MSG_HASH(
21782178
MENU_ENUM_LABEL_INPUT_REMAP_SORT_BY_CONTROLLER_ENABLE,

intl/msg_hash_us.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3338,11 +3338,11 @@ MSG_HASH(
33383338
"Override the input binds with the remapped binds set for the current core."
33393339
)
33403340
MSG_HASH(
3341-
MENU_ENUM_LABEL_VALUE_INPUT_REMAP_PORTS_ON_BUTTON_PRESS,
3341+
MENU_ENUM_LABEL_VALUE_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS,
33423342
"Remap Ports on Button Press"
33433343
)
33443344
MSG_HASH(
3345-
MENU_ENUM_SUBLABEL_INPUT_REMAP_PORTS_ON_BUTTON_PRESS,
3345+
MENU_ENUM_SUBLABEL_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS,
33463346
"First user to press a button becomes player 1, second becomes player 2, etc."
33473347
)
33483348
MSG_HASH(
@@ -6011,7 +6011,7 @@ MSG_HASH(
60116011
)
60126012
MSG_HASH(
60136013
MENU_ENUM_LABEL_VALUE_NOTIFICATION_SHOW_USER_MAPPED_TO_CORE_PORT,
6014-
"Remap Ports on Button Press Notifications"
6014+
"Assign Ports on Button Press Notifications"
60156015
)
60166016
MSG_HASH(
60176017
MENU_ENUM_SUBLABEL_NOTIFICATION_SHOW_USER_MAPPED_TO_CORE_PORT,

menu/menu_displaylist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8278,7 +8278,7 @@ unsigned menu_displaylist_build_list(
82788278
{MENU_ENUM_LABEL_INPUT_BIND_HOLD, PARSE_ONLY_UINT, true},
82798279
{MENU_ENUM_LABEL_INPUT_AUTODETECT_ENABLE, PARSE_ONLY_BOOL, true},
82808280
{MENU_ENUM_LABEL_INPUT_REMAP_BINDS_ENABLE, PARSE_ONLY_BOOL, true},
8281-
{MENU_ENUM_LABEL_INPUT_REMAP_PORTS_ON_BUTTON_PRESS, PARSE_ONLY_BOOL, true},
8281+
{MENU_ENUM_LABEL_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS, PARSE_ONLY_BOOL, true},
82828282
{MENU_ENUM_LABEL_INPUT_REMAP_SORT_BY_CONTROLLER_ENABLE, PARSE_ONLY_BOOL, true},
82838283
{MENU_ENUM_LABEL_INPUT_ICADE_ENABLE, PARSE_ONLY_BOOL, true},
82848284
{MENU_ENUM_LABEL_INPUT_SMALL_KEYBOARD_ENABLE, PARSE_ONLY_BOOL, true},

menu/menu_setting.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8944,7 +8944,7 @@ static void general_write_handler(rarch_setting_t *setting)
89448944
NULL, menu_st->userdata);
89458945
}
89468946
break;
8947-
case MENU_ENUM_LABEL_INPUT_REMAP_PORTS_ON_BUTTON_PRESS:
8947+
case MENU_ENUM_LABEL_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS:
89488948
{
89498949
input_remapping_set_defaults(false);
89508950
}
@@ -15633,10 +15633,10 @@ static bool setting_append_list(
1563315633

1563415634
CONFIG_BOOL(
1563515635
list, list_info,
15636-
&settings->bools.input_remap_ports_on_button_press,
15637-
MENU_ENUM_LABEL_INPUT_REMAP_PORTS_ON_BUTTON_PRESS,
15638-
MENU_ENUM_LABEL_VALUE_INPUT_REMAP_PORTS_ON_BUTTON_PRESS,
15639-
DEFAULT_INPUT_REMAP_PORTS_ON_BUTTON_PRESS,
15636+
&settings->bools.input_assign_ports_on_button_press,
15637+
MENU_ENUM_LABEL_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS,
15638+
MENU_ENUM_LABEL_VALUE_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS,
15639+
DEFAULT_INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS,
1564015640
MENU_ENUM_LABEL_VALUE_OFF,
1564115641
MENU_ENUM_LABEL_VALUE_ON,
1564215642
&group_info,

msg_hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ enum msg_hash_enums
13361336
MENU_LABEL(INPUT_BIND_TIMEOUT),
13371337
MENU_LABEL(INPUT_BIND_HOLD),
13381338
MENU_LABEL(INPUT_REMAP_BINDS_ENABLE),
1339-
MENU_LABEL(INPUT_REMAP_PORTS_ON_BUTTON_PRESS),
1339+
MENU_LABEL(INPUT_ASSIGN_PORTS_ON_BUTTON_PRESS),
13401340
MENU_LABEL(INPUT_REMAP_SORT_BY_CONTROLLER_ENABLE),
13411341
MENU_LABEL(INPUT_OVERLAY_ENABLE),
13421342
MENU_LABEL(INPUT_OSK_OVERLAY_ENABLE),

0 commit comments

Comments
 (0)