summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/sliding_puzzle.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/sliding_puzzle.c b/apps/plugins/sliding_puzzle.c
index 0f5f5fd..f6ba83e 100644
--- a/apps/plugins/sliding_puzzle.c
+++ b/apps/plugins/sliding_puzzle.c
@@ -433,6 +433,8 @@ static void draw_spot(int p, int x, int y)
int old_fg = rb->lcd_get_foreground();
rb->lcd_set_foreground(LCD_BLACK);
rb->lcd_fillrect(x,y,SPOTS_WIDTH,SPOTS_HEIGHT);
+ rb->lcd_set_foreground(LCD_WHITE);
+ rb->lcd_drawrect(x,y,SPOTS_WIDTH,SPOTS_HEIGHT);
rb->lcd_set_foreground(old_fg);
#endif
}