aboutsummaryrefslogtreecommitdiffstats
path: root/drv_generic_graphic.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_generic_graphic.c')
-rw-r--r--drv_generic_graphic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drv_generic_graphic.c b/drv_generic_graphic.c
index ba569fe..a0cb708 100644
--- a/drv_generic_graphic.c
+++ b/drv_generic_graphic.c
@@ -1,4 +1,4 @@
-/* $Id: drv_generic_graphic.c 745 2007-01-19 05:25:07Z michael $
+/* $Id: drv_generic_graphic.c 773 2007-02-25 12:39:09Z michael $
* $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_generic_graphic.c $
*
* generic driver helper for graphic displays
@@ -81,10 +81,10 @@
#endif
/* pixel colors */
-RGBA FG_COL = { R: 0x00, G: 0x00, B: 0x00, A:0xff };
-RGBA BG_COL = { R: 0xff, G: 0xff, B: 0xff, A:0xff };
-RGBA BL_COL = { R: 0xff, G: 0xff, B: 0xff, A:0x00 };
-RGBA NO_COL = { R: 0x00, G: 0x00, B: 0x00, A:0x00 };
+RGBA FG_COL = {.R = 0x00,.G = 0x00,.B = 0x00,.A = 0xff };
+RGBA BG_COL = {.R = 0xff,.G = 0xff,.B = 0xff,.A = 0xff };
+RGBA BL_COL = {.R = 0xff,.G = 0xff,.B = 0xff,.A = 0x00 };
+RGBA NO_COL = {.R = 0x00,.G = 0x00,.B = 0x00,.A = 0x00 };
static char *Section = NULL;
static char *Driver = NULL;