From a9921cbfba0a1eef8ebacdf090abf3a104104938 Mon Sep 17 00:00:00 2001 From: NightlyFox Date: Sun, 23 Sep 2018 13:40:50 -0500 Subject: [PATCH] changed settings.cfg name back to theme.cfg name, but left it in the same folder, makes more sense for the applied theme to live in a seperate folder --- common/menu.c | 2 +- common/theme.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/menu.c b/common/menu.c index 8137aed..6da1e37 100644 --- a/common/menu.c +++ b/common/menu.c @@ -65,7 +65,7 @@ void launchApplyThemeTask(menuEntry_s* arg){ tmp_path[0] = '/'; #endif - strncat(tmp_path, "config/nx-hbmenu/settings.cfg", sizeof(tmp_path)-2); + strncat(tmp_path, "config/nx-hbmenu/theme.cfg", sizeof(tmp_path)-2); if(!config_write_file(&cfg, tmp_path)){ menuCreateMsgBox(780, 300, "Something went wrong, and the theme could not be applied!"); return; diff --git a/common/theme.c b/common/theme.c index 40a876a..836a31f 100644 --- a/common/theme.c +++ b/common/theme.c @@ -57,7 +57,7 @@ void themeStartup(ThemePreset preset) { tmp_path[0] = '/'; #endif - strncat(tmp_path, "config/nx-hbmenu/settings.cfg", sizeof(tmp_path)-2); + strncat(tmp_path, "config/nx-hbmenu/theme.cfg", sizeof(tmp_path)-2); theme_t *themeDefault; config_t cfg = {0};