diff options
Diffstat (limited to 'engines/glk/conf.cpp')
-rw-r--r-- | engines/glk/conf.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/glk/conf.cpp b/engines/glk/conf.cpp index 5c6bc761bc..4e7ed24b02 100644 --- a/engines/glk/conf.cpp +++ b/engines/glk/conf.cpp @@ -124,6 +124,9 @@ Conf::Conf(InterpreterType interpType) { get("caretcolor", _propInfo._caretColor, nullptr); get("caretcolor", _propInfo._caretSave, nullptr); get("caretshape", _propInfo._caretShape, 2); + _monoInfo._caretColor = _propInfo._caretColor; + _monoInfo._caretSave = _propInfo._caretSave; + _monoInfo._caretShape = _propInfo._caretShape; _propInfo._linkStyle = _monoInfo._linkStyle = ConfMan.hasKey("linkstyle") && !strToInt(ConfMan.get("linkstyle").c_str()) ? 0 : 1; |