summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/debug_menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 82d9ad513c..a4a399d616 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2537,7 +2537,10 @@ static bool cpu_boost_log(void)
2537 str = cpu_boost_log_getlog_next(); 2537 str = cpu_boost_log_getlog_next();
2538 if (str) 2538 if (str)
2539 { 2539 {
2540 lcd_puts(0, j,str); 2540 if(strlen(str) > LCD_WIDTH/SYSFONT_WIDTH)
2541 lcd_puts_scroll(0, j, str);
2542 else
2543 lcd_puts(0, j,str);
2541 } 2544 }
2542 str = NULL; 2545 str = NULL;
2543 } 2546 }