File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,6 @@ MultiplayerMenu::MultiplayerMenu()
30
30
auto & automanage_item = add_toggle (-1 , _ (" Auto-manage Players" ), &g_config->multiplayer_auto_manage_players );
31
31
automanage_item.set_help (_ (" Automatically add and remove players when controllers are plugged or unplugged" ));
32
32
33
- auto & buzz_item = add_toggle (-1 , _ (" Enable Rumbling Controllers" ), &g_config->multiplayer_buzz_controllers );
34
- buzz_item.set_help (_ (" Enable vibrating the game controllers." ) + " " + _ (" This feature is currently only used in the options menu." ));
35
- // ^ Separated both translation strings so the latter can be removed if it is
36
- // no longer true, without requiring a new round of translating
37
-
38
33
add_submenu (_ (" Manage Players" ), MenuStorage::MULTIPLAYER_PLAYERS_MENU);
39
34
40
35
add_hl ();
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ enum OptionsMenuIDs {
68
68
MNID_MUSIC,
69
69
MNID_SOUND_VOLUME,
70
70
MNID_MUSIC_VOLUME,
71
+ MNID_RUMBLING,
71
72
MNID_DEVELOPER_MODE,
72
73
MNID_CHRISTMAS_MODE,
73
74
MNID_TRANSITIONS,
@@ -403,6 +404,11 @@ OptionsMenu::OptionsMenu(bool complete) :
403
404
add_inactive ( _ (" Music (disabled)" ));
404
405
}
405
406
407
+ // Separated both translation strings so the latter can be removed if it is
408
+ // no longer true, without requiring a new round of translating
409
+ add_toggle (MNID_RUMBLING, _ (" Enable Rumbling Controllers" ), &g_config->multiplayer_buzz_controllers )
410
+ .set_help (_ (" Enable vibrating the game controllers." ) + " " + _ (" This feature is currently only used in the multiplayer options menu." ));
411
+
406
412
add_submenu (_ (" Setup Keyboard" ), MenuStorage::KEYBOARD_MENU)
407
413
.set_help (_ (" Configure key-action mappings" ));
408
414
You can’t perform that action at this time.
0 commit comments