From ea8aab4c42263eb955a528e46e7b8ca1155d76cc Mon Sep 17 00:00:00 2001 From: Themaister Date: Fri, 17 May 2013 22:22:15 +0200 Subject: [PATCH] Move rewind and SRAM settings around. Move to general "Settings". --- frontend/menu/rgui.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/menu/rgui.c b/frontend/menu/rgui.c index f1c3ef5e6f..8f99343d9b 100644 --- a/frontend/menu/rgui.c +++ b/frontend/menu/rgui.c @@ -1199,6 +1199,11 @@ static void rgui_settings_disc_options_populate_entries(rgui_handle_t *rgui) static void rgui_settings_options_populate_entries(rgui_handle_t *rgui) { rgui_list_clear(rgui->selection_buf); + rgui_list_push(rgui->selection_buf, "Rewind", RGUI_SETTINGS_REWIND_ENABLE, 0); + rgui_list_push(rgui->selection_buf, "Rewind Granularity", RGUI_SETTINGS_REWIND_GRANULARITY, 0); +#if defined(HAVE_THREADS) && !defined(RARCH_CONSOLE) + rgui_list_push(rgui->selection_buf, "SRAM Autosave", RGUI_SETTINGS_SRAM_AUTOSAVE, 0); +#endif rgui_list_push(rgui->selection_buf, "Debug Info Messages", RGUI_SETTINGS_DEBUG_TEXT, 0); } @@ -1232,11 +1237,6 @@ static void rgui_settings_populate_entries(rgui_handle_t *rgui) rgui_list_push(rgui->selection_buf, "Restart Game", RGUI_SETTINGS_RESTART_GAME, 0); } - rgui_list_push(rgui->selection_buf, "Rewind", RGUI_SETTINGS_REWIND_ENABLE, 0); - rgui_list_push(rgui->selection_buf, "Rewind Granularity", RGUI_SETTINGS_REWIND_GRANULARITY, 0); -#if defined(HAVE_THREADS) && !defined(RARCH_CONSOLE) - rgui_list_push(rgui->selection_buf, "SRAM Autosave", RGUI_SETTINGS_SRAM_AUTOSAVE, 0); -#endif #ifndef HAVE_DYNAMIC rgui_list_push(rgui->selection_buf, "Restart RetroArch", RGUI_SETTINGS_RESTART_EMULATOR, 0); #endif