From ecc7f94c882a9f36538678cbc3ac941d7f518115 Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 27 Feb 2016 11:56:12 +1000 Subject: Tidy up flags for custom redraw routines --- src/gwin/gwin_label.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gwin/gwin_label.h') diff --git a/src/gwin/gwin_label.h b/src/gwin/gwin_label.h index c54d5da4..1e8ba53e 100644 --- a/src/gwin/gwin_label.h +++ b/src/gwin/gwin_label.h @@ -38,9 +38,9 @@ * @note Used only for writing a custom draw routine. * @{ */ -#define GLABEL_FLG_WAUTO (0x00000001 << 0) -#define GLABEL_FLG_HAUTO (0x00000001 << 1) -#define GLABEL_FLG_BORDER (0x00000001 << 2) +#define GLABEL_FLG_WAUTO 0x01 +#define GLABEL_FLG_HAUTO 0x02 +#define GLABEL_FLG_BORDER 0x04 /** @} */ // An label window -- cgit v1.2.3