aboutsummaryrefslogtreecommitdiffstats
path: root/demos/applications/combo/bounce.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-08 10:54:19 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-08 10:54:19 +1000
commit2ab2d77fcba42467b62f2be732cb8dc00510fe19 (patch)
tree8dbd616faa116a2946ad47c62c20d4a34fb749b2 /demos/applications/combo/bounce.c
parent7e95acb7310d83284288a6e89a6b3fe4bf4e8668 (diff)
downloaduGFX-2ab2d77fcba42467b62f2be732cb8dc00510fe19.tar.gz
uGFX-2ab2d77fcba42467b62f2be732cb8dc00510fe19.tar.bz2
uGFX-2ab2d77fcba42467b62f2be732cb8dc00510fe19.zip
Change coord_t to gCoord
Diffstat (limited to 'demos/applications/combo/bounce.c')
-rw-r--r--demos/applications/combo/bounce.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/applications/combo/bounce.c b/demos/applications/combo/bounce.c
index d3709056..33bb8394 100644
--- a/demos/applications/combo/bounce.c
+++ b/demos/applications/combo/bounce.c
@@ -63,9 +63,9 @@ static gfxThreadHandle thread;
#define SHADOWALPHA (255-255*0.2)
static DECLARE_THREAD_FUNCTION(task, param) {
- coord_t width, height, x, y, radius, ballx, bally, dx, floor;
- coord_t minx, miny, maxx, maxy, winx, winy;
- coord_t ballcx, ballcy;
+ gCoord width, height, x, y, radius, ballx, bally, dx, floor;
+ gCoord minx, miny, maxx, maxy, winx, winy;
+ gCoord ballcx, ballcy;
color_t colour;
float ii, spin, dy, spinspeed, h, f, g;
(void) param;