summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/grey_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/grey_core.c')
-rw-r--r--apps/plugins/lib/grey_core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lib/grey_core.c b/apps/plugins/lib/grey_core.c
index 80daf494a0..caa7af2f25 100644
--- a/apps/plugins/lib/grey_core.c
+++ b/apps/plugins/lib/grey_core.c
@@ -239,12 +239,12 @@ static unsigned long _grey_get_pixel(int x, int y)
239static void _timer_isr(void) 239static void _timer_isr(void)
240{ 240{
241#if LCD_PIXELFORMAT == HORIZONTAL_PACKING 241#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
242 _grey_info.rb->lcd_grey_phase_blit(_grey_info.values, _grey_info.phases, 242 _grey_info.rb->lcd_blit_grey_phase(_grey_info.values, _grey_info.phases,
243 _grey_info.bx, _grey_info.y, 243 _grey_info.bx, _grey_info.y,
244 _grey_info.bwidth, _grey_info.height, 244 _grey_info.bwidth, _grey_info.height,
245 _grey_info.width); 245 _grey_info.width);
246#else 246#else
247 _grey_info.rb->lcd_grey_phase_blit(_grey_info.values, _grey_info.phases, 247 _grey_info.rb->lcd_blit_grey_phase(_grey_info.values, _grey_info.phases,
248 _grey_info.x, _grey_info.by, 248 _grey_info.x, _grey_info.by,
249 _grey_info.width, _grey_info.bheight, 249 _grey_info.width, _grey_info.bheight,
250 _grey_info.width); 250 _grey_info.width);
@@ -457,7 +457,7 @@ void grey_release(void)
457 grey_deferred_update() instead. 457 grey_deferred_update() instead.
458 458
459 Other functions to avoid are: 459 Other functions to avoid are:
460 lcd_blit() (obviously), lcd_update_rect(), lcd_set_contrast(), 460 lcd_blit_mono(), lcd_update_rect(), lcd_set_contrast(),
461 lcd_set_invert_display(), lcd_set_flip() */ 461 lcd_set_invert_display(), lcd_set_flip() */
462void grey_show(bool enable) 462void grey_show(bool enable)
463{ 463{