From ebefa7e3cd0fe6a7472788b34eee1b16cce019d3 Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 23 Nov 2013 12:58:07 +1000 Subject: [PATCH] Fix compile error --- src/gwin/gwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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