From 42df5cf5e04a58cbb1aab7c15850c8be9257c17c Mon Sep 17 00:00:00 2001 From: NightlyFox Date: Fri, 21 Sep 2018 00:21:33 -0500 Subject: [PATCH] fixed bug that would take user from netloader screen to theme switcher menu, without properly exiting --- common/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/menu.c b/common/menu.c index 879cf7e..5e86a99 100644 --- a/common/menu.c +++ b/common/menu.c @@ -313,7 +313,7 @@ void menuStartup() { } void themeMenuStartup() { - if(hbmenu_state==HBMENU_THEME_MENU) return; + if(hbmenu_state != HBMENU_DEFAULT) return; hbmenu_state = HBMENU_THEME_MENU; char tmp_path[PATH_MAX];