diff options
author | inmarket <andrewh@inmarket.com.au> | 2018-07-08 10:54:19 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2018-07-08 10:54:19 +1000 |
commit | 2ab2d77fcba42467b62f2be732cb8dc00510fe19 (patch) | |
tree | 8dbd616faa116a2946ad47c62c20d4a34fb749b2 /demos/modules/gdisp/basics/main.c | |
parent | 7e95acb7310d83284288a6e89a6b3fe4bf4e8668 (diff) | |
download | uGFX-2ab2d77fcba42467b62f2be732cb8dc00510fe19.tar.gz uGFX-2ab2d77fcba42467b62f2be732cb8dc00510fe19.tar.bz2 uGFX-2ab2d77fcba42467b62f2be732cb8dc00510fe19.zip |
Change coord_t to gCoord
Diffstat (limited to 'demos/modules/gdisp/basics/main.c')
-rw-r--r-- | demos/modules/gdisp/basics/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/modules/gdisp/basics/main.c b/demos/modules/gdisp/basics/main.c index 9517e0a6..ac7870f1 100644 --- a/demos/modules/gdisp/basics/main.c +++ b/demos/modules/gdisp/basics/main.c @@ -30,8 +30,8 @@ #include "gfx.h"
int main(void) {
- coord_t width, height;
- coord_t i, j;
+ gCoord width, height;
+ gCoord i, j;
// Initialize and clear the display
gfxInit();
|