From 6309b21252f64d17190f47b50fc3f03ea5767668 Mon Sep 17 00:00:00 2001 From: dankcushions Date: Wed, 15 Feb 2017 15:15:09 +0000 Subject: [PATCH] Change to advanced settings: auto_remaps_enable & auto_overrides_enable There seems to be no reason to show these options as they default to true and there's no reason to disable them unless you were debugging something (and even then...) Maybe even remove the option entirely? --- menu/menu_setting.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/menu/menu_setting.c b/menu/menu_setting.c index 07983f0e81..6cba6258f5 100644 --- a/menu/menu_setting.c +++ b/menu/menu_setting.c @@ -2817,13 +2817,13 @@ static bool setting_append_list( bool_entries[3].name_enum_idx = MENU_ENUM_LABEL_AUTO_OVERRIDES_ENABLE; bool_entries[3].SHORT_enum_idx = MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE; bool_entries[3].default_value = default_auto_overrides_enable; - bool_entries[3].flags = SD_FLAG_NONE; + bool_entries[3].flags = SD_FLAG_ADVANCED; bool_entries[4].target = &settings->auto_remaps_enable; bool_entries[4].name_enum_idx = MENU_ENUM_LABEL_AUTO_REMAPS_ENABLE; bool_entries[4].SHORT_enum_idx = MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE; bool_entries[4].default_value = default_auto_remaps_enable; - bool_entries[4].flags = SD_FLAG_NONE; + bool_entries[4].flags = SD_FLAG_ADVANCED; bool_entries[5].target = &settings->auto_shaders_enable; bool_entries[5].name_enum_idx = MENU_ENUM_LABEL_AUTO_SHADERS_ENABLE;