GLK: Splitting font related info from Conf into their own classes

This commit is contained in:
Paul Gilbert 2018-12-31 18:34:42 -08:00
parent f25b3d93c1
commit 1021da132b
18 changed files with 351 additions and 221 deletions

View file

@ -508,8 +508,8 @@ void GlkAPI::glk_stylehint_set(uint wintype, uint style, uint hint, int val) {
}
if (wintype == wintype_TextBuffer && style == style_Normal && hint == stylehint_TextColor) {
memcpy(g_conf->_moreColor, styles[style].fg, 3);
memcpy(g_conf->_caretColor, styles[style].fg, 3);
memcpy(g_conf->_propInfo._moreColor, styles[style].fg, 3);
memcpy(g_conf->_propInfo._caretColor, styles[style].fg, 3);
}
}