aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gdisp/images_animated/main.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel.bodenmann@simulton.com>2019-04-10 17:33:15 +0200
committerJoel Bodenmann <joel.bodenmann@simulton.com>2019-04-10 17:33:15 +0200
commit785047b0aa1d43d5f33ae69d7e0ed708df6db0bd (patch)
treee05a8c17ec9565e458b1cfce8b17e46b84381f57 /demos/modules/gdisp/images_animated/main.c
parent509fc7501e7bd30b1b314fc0d4838d7cdf6ac621 (diff)
downloaduGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.tar.gz
uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.tar.bz2
uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.zip
Introduce type gImage to replace v2.x gdispImage
Diffstat (limited to 'demos/modules/gdisp/images_animated/main.c')
-rw-r--r--demos/modules/gdisp/images_animated/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/modules/gdisp/images_animated/main.c b/demos/modules/gdisp/images_animated/main.c
index 0503bcd3..b20c7174 100644
--- a/demos/modules/gdisp/images_animated/main.c
+++ b/demos/modules/gdisp/images_animated/main.c
@@ -39,7 +39,7 @@
#define USE_IMAGE_CACHE GFXOFF // Only if you want to get performance at the expense of RAM
#define MY_BG_COLOR RGB2COLOR(220, 220, 255) // Pale blue so we can see the transparent parts
-static gdispImage myImage;
+static gImage myImage;
#define SHOW_ERROR(color) gdispFillArea(errx, erry, errcx, errcy, color)