summaryrefslogtreecommitdiff
path: root/apps/plugins/rockpaint.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockpaint.c')
-rw-r--r--apps/plugins/rockpaint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/rockpaint.c b/apps/plugins/rockpaint.c
index 7d5b5cbaa8..7e4aefddf2 100644
--- a/apps/plugins/rockpaint.c
+++ b/apps/plugins/rockpaint.c
@@ -2461,10 +2461,10 @@ static void inv_cursor(bool update)
2461 rb->lcd_set_foreground(COLOR_BLACK); 2461 rb->lcd_set_foreground(COLOR_BLACK);
2462 rb->lcd_set_drawmode(DRMODE_COMPLEMENT); 2462 rb->lcd_set_drawmode(DRMODE_COMPLEMENT);
2463 /* cross painting */ 2463 /* cross painting */
2464 rb->lcd_drawline(x-4,y,x-1,y); 2464 rb->lcd_hline(x-4,x-1,y);
2465 rb->lcd_drawline(x+1,y,x+4,y); 2465 rb->lcd_hline(x+1,x+4,y);
2466 rb->lcd_drawline(x,y-4,x,y-1); 2466 rb->lcd_vline(x,y-4,y-1);
2467 rb->lcd_drawline(x,y+1,x,y+4); 2467 rb->lcd_vline(x,y+1,y+4);
2468 rb->lcd_set_foreground(rp_colors[drawcolor]); 2468 rb->lcd_set_foreground(rp_colors[drawcolor]);
2469 rb->lcd_set_drawmode(DRMODE_SOLID); 2469 rb->lcd_set_drawmode(DRMODE_SOLID);
2470 2470