Fixed bug where --timecolor set the color for both date and time (#34)

This commit is contained in:
Caleb Bassi 2017-07-26 10:53:17 -07:00 committed by Chris Guillott
parent 79a049365d
commit b55c2124e7
1 changed files with 4 additions and 4 deletions

View File

@ -278,10 +278,10 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
(strtol(strgroupsc[1], NULL, 16)),
(strtol(strgroupsc[2], NULL, 16)),
(strtol(strgroupsc[3], NULL, 16))};
char strgroupsd[4][3] = {{timecolor[0], timecolor[1], '\0'},
{timecolor[2], timecolor[3], '\0'},
{timecolor[4], timecolor[5], '\0'},
{timecolor[6], timecolor[7], '\0'}};
char strgroupsd[4][3] = {{datecolor[0], datecolor[1], '\0'},
{datecolor[2], datecolor[3], '\0'},
{datecolor[4], datecolor[5], '\0'},
{datecolor[6], datecolor[7], '\0'}};
uint32_t date16[4] = {(strtol(strgroupsd[0], NULL, 16)),
(strtol(strgroupsd[1], NULL, 16)),
(strtol(strgroupsd[2], NULL, 16)),