From da3f7d7d709f7915328f2fba26cd0aaac3ec0f69 Mon Sep 17 00:00:00 2001 From: Tony Jansson Date: Thu, 22 Oct 2020 03:44:05 +0300 Subject: [PATCH] DISABLE_MENU final fix --- configuration.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration.c b/configuration.c index e4f25479a2..82da36126c 100644 --- a/configuration.c +++ b/configuration.c @@ -2022,12 +2022,14 @@ static struct config_uint_setting *populate_settings_uint( SETTING_UINT("playlist_show_inline_core_name", &settings->uints.playlist_show_inline_core_name, true, DEFAULT_PLAYLIST_SHOW_INLINE_CORE_NAME, false); SETTING_UINT("playlist_sublabel_runtime_type", &settings->uints.playlist_sublabel_runtime_type, true, DEFAULT_PLAYLIST_SUBLABEL_RUNTIME_TYPE, false); SETTING_UINT("playlist_sublabel_last_played_style", &settings->uints.playlist_sublabel_last_played_style, true, DEFAULT_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE, false); + + SETTING_UINT("quit_on_close_content", &settings->uints.quit_on_close_content, true, DEFAULT_QUIT_ON_CLOSE_CONTENT, false); #endif SETTING_UINT("core_updater_auto_backup_history_size", &settings->uints.core_updater_auto_backup_history_size, true, DEFAULT_CORE_UPDATER_AUTO_BACKUP_HISTORY_SIZE, false); SETTING_UINT("video_black_frame_insertion", &settings->uints.video_black_frame_insertion, true, DEFAULT_BLACK_FRAME_INSERTION, false); - SETTING_UINT("quit_on_close_content", &settings->uints.quit_on_close_content, true, DEFAULT_QUIT_ON_CLOSE_CONTENT, false); + *size = count; return tmp;