summaryrefslogtreecommitdiff
path: root/uisimulator/common/lcd-playersim.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common/lcd-playersim.h')
-rw-r--r--uisimulator/common/lcd-playersim.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/common/lcd-playersim.h b/uisimulator/common/lcd-playersim.h
index ef3b14223e..10267de1f1 100644
--- a/uisimulator/common/lcd-playersim.h
+++ b/uisimulator/common/lcd-playersim.h
@@ -30,7 +30,10 @@ struct rectangle {
30 30
31void drawdots(int color, struct coordinate *coord, int count); 31void drawdots(int color, struct coordinate *coord, int count);
32void drawdot(int color, int x, int y); 32void drawdot(int color, int x, int y);
33void drawline(int color, int x1, int y1, int x2, int y2);
34void drawrect(int color, int x1, int y1, int x2, int y2); 33void drawrect(int color, int x1, int y1, int x2, int y2);
35void drawrectangles(int color, struct rectangle *rects, int count); 34void drawrectangles(int color, struct rectangle *rects, int count);
36 35
36
37void dots(int *colors, struct coordinate *points, int count);
38
39