(Menu) Two more enums can go

This commit is contained in:
twinaphex 2014-08-29 22:21:04 +02:00
parent 645a9c3672
commit c1dead999a
2 changed files with 2 additions and 4 deletions

View File

@ -480,9 +480,9 @@ static void menu_common_entries_init(menu_handle_t *menu, unsigned menu_type)
file_list_push(menu->selection_buf, "Analog D-pad Mode", "",
MENU_SETTINGS_BIND_ANALOG_MODE, 0, NULL);
file_list_push(menu->selection_buf, "", "input_axis_threshold",
MENU_SETTINGS_INPUT_AXIS_THRESHOLD, 0, setting_data);
0, 0, setting_data);
file_list_push(menu->selection_buf, "", "input_autodetect_enable",
MENU_SETTINGS_DEVICE_AUTODETECT_ENABLE, 0, setting_data);
0, 0, setting_data);
file_list_push(menu->selection_buf, "Bind Mode", "",
MENU_SETTINGS_CUSTOM_BIND_MODE, 0, NULL);
file_list_push(menu->selection_buf, "Configure All (RetroPad)", "",

View File

@ -123,8 +123,6 @@ typedef enum
MENU_SETTINGS_BIND_DEVICE,
MENU_SETTINGS_BIND_DEVICE_TYPE,
MENU_SETTINGS_BIND_ANALOG_MODE,
MENU_SETTINGS_INPUT_AXIS_THRESHOLD,
MENU_SETTINGS_DEVICE_AUTODETECT_ENABLE,
// Match up with libretro order for simplicity.
MENU_SETTINGS_BIND_BEGIN,