aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-08 15:25:03 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit754819f9281d5207deaff1922a915bd9dc0437b5 (patch)
treeb3e29c82894532e3e24cebc38909837de5c0c344
parentecb0c10fdb90cf57dca0a528d3b7291979ee7ab8 (diff)
downloadscummvm-rg350-754819f9281d5207deaff1922a915bd9dc0437b5.tar.gz
scummvm-rg350-754819f9281d5207deaff1922a915bd9dc0437b5.tar.bz2
scummvm-rg350-754819f9281d5207deaff1922a915bd9dc0437b5.zip
GLK: FROTZ: Reduce window margin to 0 to have status bar fill entire width
-rw-r--r--engines/glk/conf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/conf.cpp b/engines/glk/conf.cpp
index ee2fd9bc21..efd16874b2 100644
--- a/engines/glk/conf.cpp
+++ b/engines/glk/conf.cpp
@@ -107,7 +107,7 @@ Conf::Conf(InterpreterType interpType) {
if (ConfMan.hasKey("maxcols"))
_cols = MIN(_cols, strToInt(ConfMan.get("maxcols").c_str()));
- const int DEFAULT_MARGIN_X = (interpType == INTERPRETER_FROTZ) ? 2 : 15;
+ const int DEFAULT_MARGIN_X = (interpType == INTERPRETER_FROTZ) ? 0 : 15;
const int DEFAULT_MARGIN_Y = (interpType == INTERPRETER_FROTZ) ? 0 : 15;
get("lockrows", _lockRows);