aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk_api.cpp
diff options
context:
space:
mode:
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);
}
}