diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-11-23 12:58:07 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-11-23 12:58:07 +1000 |
commit | ebefa7e3cd0fe6a7472788b34eee1b16cce019d3 (patch) | |
tree | 0eb161cb3960919732097f1d67670a9aa554f140 /src | |
parent | 51dedb56d1029310bbda58b8e7321dabd4bc0312 (diff) | |
download | uGFX-ebefa7e3cd0fe6a7472788b34eee1b16cce019d3.tar.gz uGFX-ebefa7e3cd0fe6a7472788b34eee1b16cce019d3.tar.bz2 uGFX-ebefa7e3cd0fe6a7472788b34eee1b16cce019d3.zip |
Fix compile error
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/gwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin.c b/src/gwin/gwin.c index c2eb0260..dc9208e8 100644 --- a/src/gwin/gwin.c +++ b/src/gwin/gwin.c @@ -48,7 +48,7 @@ static color_t defaultBgColor = Black; gdispGSetClip(gh->display, gh->x, gh->y, gh->width, gh->height); #endif gh->vmt->Redraw(gh); - } else if (!(flags & GWIN_WMFLG_PRESERVE)) + } else if (!(flags & GWIN_WMFLG_PRESERVE)) { #if GDISP_NEED_CLIP gdispGSetClip(gh->display, gh->x, gh->y, gh->width, gh->height); #endif |