Increase size of gwin flags to 32 bits.
This commit is contained in:
parent
1791bec348
commit
f8f85b6c43
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ typedef struct GWindowObject {
|
||||||
coord_t x, y; // @< Screen relative position
|
coord_t x, y; // @< Screen relative position
|
||||||
coord_t width, height; // @< Dimensions of this window
|
coord_t width, height; // @< Dimensions of this window
|
||||||
color_t color, bgcolor; // @< The current drawing colors
|
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
|
#if GDISP_NEED_TEXT
|
||||||
font_t font; // @< The current font
|
font_t font; // @< The current font
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue