aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/events.cpp')
-rw-r--r--engines/glk/events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/events.cpp b/engines/glk/events.cpp
index a68fcad4a8..4d6f19f510 100644
--- a/engines/glk/events.cpp
+++ b/engines/glk/events.cpp
@@ -87,7 +87,7 @@ void Events::initializeCursors() {
// Setup selection cusor sized to the vertical line size
Surface &sel = _cursors[CURSOR_IBEAM];
- sel.create(5, g_conf->_leading, g_system->getScreenFormat());
+ sel.create(5, g_conf->_propInfo._leading, g_system->getScreenFormat());
sel.fillRect(Common::Rect(0, 0, sel.w, sel.h), TRANSPARENT);
sel.hLine(0, 0, 4, 0);
sel.hLine(0, sel.h - 1, 4, 0);