diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-01-09 08:52:26 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-01-09 08:52:50 +1000 |
commit | f8f85b6c43ae032463f66a933fdbec1b6d83a9a3 (patch) | |
tree | 0ce618d59829757d8851eb719de7f7965650aece /include/gwin/gwin.h | |
parent | 1791bec3483a27843dd279c51023526ced836aa3 (diff) | |
download | uGFX-f8f85b6c43ae032463f66a933fdbec1b6d83a9a3.tar.gz uGFX-f8f85b6c43ae032463f66a933fdbec1b6d83a9a3.tar.bz2 uGFX-f8f85b6c43ae032463f66a933fdbec1b6d83a9a3.zip |
Increase size of gwin flags to 32 bits.
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r-- | include/gwin/gwin.h | 2 |
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 |