aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2017-08-26 13:53:17 +1000
committerinmarket <andrewh@inmarket.com.au>2017-08-26 13:53:17 +1000
commit75e373c237acfb938b4312d1666cda6708e96fba (patch)
tree0eaba959329959287835de536c134b53b1f7176f /src
parent0388755df1e3d65aa6d17f90965bcf5037c204ab (diff)
downloaduGFX-75e373c237acfb938b4312d1666cda6708e96fba.tar.gz
uGFX-75e373c237acfb938b4312d1666cda6708e96fba.tar.bz2
uGFX-75e373c237acfb938b4312d1666cda6708e96fba.zip
Oops! Fix object reference
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin_image.c b/src/gwin/gwin_image.c
index b1da7d52..855eecc9 100644
--- a/src/gwin/gwin_image.c
+++ b/src/gwin/gwin_image.c
@@ -21,7 +21,7 @@
static void ImageDestroy(GWindowObject *gh) {
// Stop the timer
#if GWIN_NEED_IMAGE_ANIMATION
- gtimerStop(&gobj->timer);
+ gtimerStop(&gw->timer);
#endif
if (gdispImageIsOpen(&gw->image))
gdispImageClose(&gw->image);