Skip to content

Commit

Permalink
Do not exclude browser and config directory settings if RGUI is disab…
Browse files Browse the repository at this point in the history
…led.
  • Loading branch information
zoltanvb committed Oct 15, 2023
1 parent ce6a00b commit 653d05f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configuration.c
Original file line number Diff line number Diff line change
Expand Up @@ -1619,9 +1619,10 @@ static struct config_path_setting *populate_settings_path(
SETTING_PATH("menu_wallpaper", settings->paths.path_menu_wallpaper, false, NULL, true);
#ifdef HAVE_RGUI
SETTING_PATH("rgui_menu_theme_preset", settings->paths.path_rgui_theme_preset, false, NULL, true);
#endif
/* Browser and config directories are not RGUI dependent, but name is kept to avoid config file change */
SETTING_PATH("rgui_browser_directory", settings->paths.directory_menu_content, true, NULL, true);
SETTING_PATH("rgui_config_directory", settings->paths.directory_menu_config, true, NULL, true);
#endif
#ifdef HAVE_XMB
SETTING_PATH("xmb_font", settings->paths.path_menu_xmb_font, false, NULL, true);
#endif
Expand Down

0 comments on commit 653d05f

Please sign in to comment.