From f8f85b6c43ae032463f66a933fdbec1b6d83a9a3 Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 9 Jan 2014 08:52:26 +1000 Subject: [PATCH] Increase size of gwin flags to 32 bits. --- include/gwin/gwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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