summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/main_menu.c2
-rw-r--r--apps/screens.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index deaeb9b2ec..d8818a1115 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -299,7 +299,7 @@ bool info_menu(void)
299#ifdef HAVE_LCD_CHARCELLS 299#ifdef HAVE_LCD_CHARCELLS
300static bool do_shutdown(void) 300static bool do_shutdown(void)
301{ 301{
302 sys_poweroff(false); 302 sys_poweroff();
303 return false; 303 return false;
304} 304}
305#endif 305#endif
diff --git a/apps/screens.c b/apps/screens.c
index bba5b279e2..b28432d1fd 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -1259,7 +1259,7 @@ bool shutdown_screen(void)
1259 switch(button) 1259 switch(button)
1260 { 1260 {
1261 case BUTTON_OFF: 1261 case BUTTON_OFF:
1262 sys_poweroff(false); 1262 sys_poweroff();
1263 break; 1263 break;
1264 1264
1265 default: 1265 default: