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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drv_generic_graphic.c b/drv_generic_graphic.c
index b82de0f..af4ae31 100644
--- a/drv_generic_graphic.c
+++ b/drv_generic_graphic.c
@@ -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;