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:53:30 +1000 |
commit | 99b4fba5125f6b8e181c4657d394303767a90935 (patch) | |
tree | a38768c45011cca14321f8f092f21829b519a864 | |
parent | ac690d1d295ec27f4c01064bd692d521c7f8b363 (diff) | |
download | uGFX-99b4fba5125f6b8e181c4657d394303767a90935.tar.gz uGFX-99b4fba5125f6b8e181c4657d394303767a90935.tar.bz2 uGFX-99b4fba5125f6b8e181c4657d394303767a90935.zip |
Increase size of gwin flags to 32 bits.
-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 e74927ae..8385fe92 100644 --- a/include/gwin/gwin.h +++ b/include/gwin/gwin.h @@ -45,7 +45,7 @@ typedef struct GWindowObject { coord_t x, y; // @< Position relative to parent 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 |