summaryrefslogtreecommitdiff
path: root/apps/plugins/star.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/star.c')
-rw-r--r--apps/plugins/star.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index 79f93ccba2..fbaf8aeed6 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -838,7 +838,9 @@ static int star_menu(void)
838 838
839 for (i = 0 ; i < char_height ; i++) 839 for (i = 0 ; i < char_height ; i++)
840 { 840 {
841 rb->lcd_clearrect (2, 30, 7, 4 * 8); 841 rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
842 rb->lcd_fillrect (2, 30, 7, 4 * 8);
843 rb->lcd_set_drawmode(DRMODE_SOLID);
842 rb->lcd_bitmap(arrow_bmp[anim_arrow[(anim_state & 0x38) >> 3]], 844 rb->lcd_bitmap(arrow_bmp[anim_arrow[(anim_state & 0x38) >> 3]],
843 2, menu_offset_y + menu_y * 8 + move_y * i, 7, 8, 845 2, menu_offset_y + menu_y * 8 + move_y * i, 7, 8,
844 false); 846 false);