From a8719faf701264abc0836c9d373df9170a21ee15 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Jun 2015 17:20:47 +0200 Subject: [PATCH] (Menu) Move setting categories around --- menu/menu_setting.c | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/menu/menu_setting.c b/menu/menu_setting.c index 638a74631a..1558d4313d 100644 --- a/menu/menu_setting.c +++ b/menu/menu_setting.c @@ -6775,24 +6775,6 @@ rarch_setting_t *menu_setting_new(unsigned mask) goto error; } - if (mask & SL_FLAG_RECORDING_OPTIONS) - { - if (!setting_append_list_recording_options(&list, list_info)) - goto error; - } - - if (mask & SL_FLAG_FRAME_THROTTLE_OPTIONS) - { - if (!setting_append_list_frame_throttling_options(&list, list_info)) - goto error; - } - - if (mask & SL_FLAG_FONT_OPTIONS) - { - if (!setting_append_list_font_options(&list, list_info)) - goto error; - } - if (mask & SL_FLAG_AUDIO_OPTIONS) { if (!setting_append_list_audio_options(&list, list_info)) @@ -6811,6 +6793,24 @@ rarch_setting_t *menu_setting_new(unsigned mask) goto error; } + if (mask & SL_FLAG_RECORDING_OPTIONS) + { + if (!setting_append_list_recording_options(&list, list_info)) + goto error; + } + + if (mask & SL_FLAG_FRAME_THROTTLE_OPTIONS) + { + if (!setting_append_list_frame_throttling_options(&list, list_info)) + goto error; + } + + if (mask & SL_FLAG_FONT_OPTIONS) + { + if (!setting_append_list_font_options(&list, list_info)) + goto error; + } + if (mask & SL_FLAG_OVERLAY_OPTIONS) { if (!setting_append_list_overlay_options(&list, list_info)) @@ -6823,6 +6823,8 @@ rarch_setting_t *menu_setting_new(unsigned mask) goto error; } + + if (mask & SL_FLAG_MENU_OPTIONS) { if (!setting_append_list_menu_options(&list, list_info))