aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/gwin_list.h')
-rw-r--r--src/gwin/gwin_list.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gwin/gwin_list.h b/src/gwin/gwin_list.h
index 01ac0b0b..a4d8aca7 100644
--- a/src/gwin/gwin_list.h
+++ b/src/gwin/gwin_list.h
@@ -81,11 +81,11 @@ typedef enum scroll_t { scrollAlways, scrollAuto, scrollSmooth } scroll_t;
* @note Used only for writing a custom draw routine.
* @{
*/
-#define GLIST_FLG_MULTISELECT (0x00000001 << 0)
-#define GLIST_FLG_HASIMAGES (0x00000001 << 1)
-#define GLIST_FLG_SCROLLALWAYS (0x00000001 << 2)
-#define GLIST_FLG_SCROLLSMOOTH (0x00000001 << 3)
-#define GLIST_FLG_ENABLERENDER (0x00000001 << 4)
+#define GLIST_FLG_MULTISELECT 0x01
+#define GLIST_FLG_HASIMAGES 0x02
+#define GLIST_FLG_SCROLLALWAYS 0x04
+#define GLIST_FLG_SCROLLSMOOTH 0x08
+#define GLIST_FLG_ENABLERENDER 0x10
/** @} */
/**