summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/lua/rocklib_img.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/rocklib_img.c b/apps/plugins/lua/rocklib_img.c
index 1857fbec5d..239fc1092b 100644
--- a/apps/plugins/lua/rocklib_img.c
+++ b/apps/plugins/lua/rocklib_img.c
@@ -647,7 +647,7 @@ static void d_line(struct rocklua_image *img,
647 img_vp.fg_pattern = 0x55 * (~(*clr) & 3); 647 img_vp.fg_pattern = 0x55 * (~(*clr) & 3);
648 img_vp.drawmode = DRMODE_FG; 648 img_vp.drawmode = DRMODE_FG;
649#elif LCD_DEPTH > 1 649#elif LCD_DEPTH > 1
650 img_vp.fg_pattern = *clr; 650 img_vp.fg_pattern = FB_UNPACK_SCALAR_LCD(*clr);
651 img_vp.drawmode = DRMODE_FG; 651 img_vp.drawmode = DRMODE_FG;
652#else /* bit of a hack to make sure lines show properly from lua */ 652#else /* bit of a hack to make sure lines show properly from lua */
653 /* use rb.lcd_drawline if you want full control */ 653 /* use rb.lcd_drawline if you want full control */