aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-01-09 08:52:26 +1000
committerinmarket <andrewh@inmarket.com.au>2014-01-09 08:52:26 +1000
commitca8ca49825c01cc7698c8b363b022b7d35b912cf (patch)
tree2f1fc732b2e1ebb5a907617fea0560ece81d31b1 /include
parentf657477fdd024d19d04962a527c91541f524a3dd (diff)
downloaduGFX-ca8ca49825c01cc7698c8b363b022b7d35b912cf.tar.gz
uGFX-ca8ca49825c01cc7698c8b363b022b7d35b912cf.tar.bz2
uGFX-ca8ca49825c01cc7698c8b363b022b7d35b912cf.zip
Increase size of gwin flags to 32 bits.
Diffstat (limited to 'include')
-rw-r--r--include/gwin/gwin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h
index e964bc3a..f97919e5 100644
--- a/include/gwin/gwin.h
+++ b/include/gwin/gwin.h
@@ -42,7 +42,7 @@ typedef struct GWindowObject {
coord_t x, y; // @< Screen relative position
coord_t width, height; // @< Dimensions of this window
color_t color, bgcolor; // @< The current drawing colors
- uint16_t flags; // @< Window flags (the meaning is private to the GWIN class)
+ uint32_t flags; // @< Window flags (the meaning is private to the GWIN class)
#if GDISP_NEED_TEXT
font_t font; // @< The current font
#endif