summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/screens.c1
-rw-r--r--firmware/drivers/lcd-2bit-horz.c2
-rw-r--r--firmware/drivers/lcd-2bit-vi.c2
3 files changed, 3 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c
index a069bf19d9..0334329b5d 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -575,6 +575,7 @@ bool set_time_screen(const char* title, struct tm *tm)
575#endif /* defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0) */ 575#endif /* defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0) */
576 576
577#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF) 577#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
578#include "scroll_engine.h"
578bool shutdown_screen(void) 579bool shutdown_screen(void)
579{ 580{
580 int button; 581 int button;
diff --git a/firmware/drivers/lcd-2bit-horz.c b/firmware/drivers/lcd-2bit-horz.c
index 267a22db3f..1d256e5f58 100644
--- a/firmware/drivers/lcd-2bit-horz.c
+++ b/firmware/drivers/lcd-2bit-horz.c
@@ -385,7 +385,7 @@ void lcd_clear_viewport(void)
385 385
386 current_vp->drawmode = lastmode; 386 current_vp->drawmode = lastmode;
387 387
388 lcd_scroll_stop(current_vp); 388 lcd_scroll_stop_viewport(current_vp);
389 } 389 }
390} 390}
391 391
diff --git a/firmware/drivers/lcd-2bit-vi.c b/firmware/drivers/lcd-2bit-vi.c
index b0c41e4fa9..0608dfaa46 100644
--- a/firmware/drivers/lcd-2bit-vi.c
+++ b/firmware/drivers/lcd-2bit-vi.c
@@ -413,7 +413,7 @@ void LCDFN(clear_viewport)(void)
413 413
414 current_vp->drawmode = lastmode; 414 current_vp->drawmode = lastmode;
415 415
416 LCDFN(scroll_stop)(current_vp); 416 LCDFN(scroll_stop_viewport)(current_vp);
417 } 417 }
418} 418}
419 419