It still has to be in hex...
This commit is contained in:
TingPing 2015-03-19 16:47:37 -04:00
parent 455fa24d63
commit 1cc06f9301
1 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ cfg_put_color (int fh, guint16 r, guint16 g, guint16 b, char *var)
char buf[400];
int len;
g_snprintf (buf, sizeof buf, "%s = %04"G_GUINT16_FORMAT" %04"G_GUINT16_FORMAT" %04"G_GUINT16_FORMAT"\n", var, r, g, b);
g_snprintf (buf, sizeof buf, "%s = %04hx %04hx %04hx\n", var, r, g, b);
len = strlen (buf);
return (write (fh, buf, len) == len);
}
@ -258,7 +258,7 @@ cfg_get_color (char *cfg, char *var, guint16 *r, guint16 *g, guint16 *b)
if (!cfg_get_str (cfg, var, str, sizeof (str)))
return 0;
sscanf (str, "%04"G_GUINT16_FORMAT" %04"G_GUINT16_FORMAT" %04"G_GUINT16_FORMAT, r, g, b);
sscanf (str, "%04hx %04hx %04hx", r, g, b);
return 1;
}