1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-21 22:28:37 -05:00

Fallout from the big revamp in r9214: colour handling was going a bit

wonky because I'd used the subkey for the red component in four places
where I should have used the green/blue subkeys instead. Thanks to
Martin Kletzander for spotting it.

[originally from svn r9449]
[r9214 == a1f3b7a358adaa7c2a98359cd0373aa823eeb14b]
This commit is contained in:
Simon Tatham 2012-04-08 09:42:58 +00:00
parent 947fa8f0ae
commit 63cb9c8356

View File

@ -847,8 +847,8 @@ static void colour_handler(union control *ctrl, void *dlg,
} else { } else {
clear = FALSE; clear = FALSE;
r = conf_get_int_int(conf, CONF_colours, i*3+0); r = conf_get_int_int(conf, CONF_colours, i*3+0);
g = conf_get_int_int(conf, CONF_colours, i*3+0); g = conf_get_int_int(conf, CONF_colours, i*3+1);
b = conf_get_int_int(conf, CONF_colours, i*3+0); b = conf_get_int_int(conf, CONF_colours, i*3+2);
} }
update = TRUE; update = TRUE;
} }
@ -901,8 +901,8 @@ static void colour_handler(union control *ctrl, void *dlg,
*/ */
if (dlg_coloursel_results(ctrl, dlg, &r, &g, &b)) { if (dlg_coloursel_results(ctrl, dlg, &r, &g, &b)) {
conf_set_int_int(conf, CONF_colours, i*3+0, r); conf_set_int_int(conf, CONF_colours, i*3+0, r);
conf_set_int_int(conf, CONF_colours, i*3+0, g); conf_set_int_int(conf, CONF_colours, i*3+1, g);
conf_set_int_int(conf, CONF_colours, i*3+0, b); conf_set_int_int(conf, CONF_colours, i*3+2, b);
clear = FALSE; clear = FALSE;
update = TRUE; update = TRUE;
} }