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};