aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk_api.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-31 18:34:42 -0800
committerPaul Gilbert2018-12-31 18:34:42 -0800
commit1021da132b2ed37232461c1ff44b78164b0a4ee5 (patch)
tree51efb87db162a9a229ad5d6fb1c2ecb8d9d230fe /engines/glk/glk_api.cpp
parentf25b3d93c1596eadc49578b8b331609168678429 (diff)
downloadscummvm-rg350-1021da132b2ed37232461c1ff44b78164b0a4ee5.tar.gz
scummvm-rg350-1021da132b2ed37232461c1ff44b78164b0a4ee5.tar.bz2
scummvm-rg350-1021da132b2ed37232461c1ff44b78164b0a4ee5.zip
GLK: Splitting font related info from Conf into their own classes
Diffstat (limited to 'engines/glk/glk_api.cpp')
-rw-r--r--engines/glk/glk_api.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/glk_api.cpp b/engines/glk/glk_api.cpp
index 4b205001bd..e2da31706a 100644
--- a/engines/glk/glk_api.cpp
+++ b/engines/glk/glk_api.cpp
@@ -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);
}
}