aboutsummaryrefslogtreecommitdiffstats
path: root/drv_generic_graphic.c
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2007-04-30 09:35:54 +0200
committerReinhard Tartler <siretart@tauware.de>2007-04-30 09:35:54 +0200
commit874ef72c5b807b61bc53dbaa0fa623b40bff1736 (patch)
tree3c44151e2132fa82d3e7eef2aa82eee1c9e1369d /drv_generic_graphic.c
parentcbaf3ad73900f63eae0add0e33439a1bf04b5a1e (diff)
downloadlcd4linux-874ef72c5b807b61bc53dbaa0fa623b40bff1736.tar.gz
new upstream version
Diffstat (limited to '')
-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;