aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_graph.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-08 10:43:30 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-08 10:43:30 +1000
commit7e95acb7310d83284288a6e89a6b3fe4bf4e8668 (patch)
treeab75f4037108ce704be60589e1ff830ef75bc5c4 /src/gwin/gwin_graph.c
parente8b789bfb166ee3218e9dbb4c6ddf74bdba79510 (diff)
downloaduGFX-7e95acb7310d83284288a6e89a6b3fe4bf4e8668.tar.gz
uGFX-7e95acb7310d83284288a6e89a6b3fe4bf4e8668.tar.bz2
uGFX-7e95acb7310d83284288a6e89a6b3fe4bf4e8668.zip
Change point and point_t to gPoint
Diffstat (limited to 'src/gwin/gwin_graph.c')
-rw-r--r--src/gwin/gwin_graph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwin/gwin_graph.c b/src/gwin/gwin_graph.c
index c729103d..217f1755 100644
--- a/src/gwin/gwin_graph.c
+++ b/src/gwin/gwin_graph.c
@@ -301,10 +301,10 @@ void gwinGraphDrawPoint(GHandle gh, coord_t x, coord_t y) {
#undef gg
}
-void gwinGraphDrawPoints(GHandle gh, const point *points, unsigned count) {
+void gwinGraphDrawPoints(GHandle gh, const gPoint *points, unsigned count) {
#define gg ((GGraphObject *)gh)
unsigned i;
- const point *p;
+ const gPoint *p;
if (gh->vmt != &graphVMT || !_gwinDrawStart(gh))
return;