aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz
diff options
context:
space:
mode:
authorPaul Gilbert2019-08-11 20:05:05 -0700
committerPaul Gilbert2019-08-11 20:05:12 -0700
commit3582fe9a60834d08514018d22f1861cb5259096e (patch)
tree78662c4a71bfba26a3fc1d907d5940e60a0eb0fd /engines/glk/frotz
parentec3af0e0c610bd793a84cbfdfcef1b296d8883ba (diff)
downloadscummvm-rg350-3582fe9a60834d08514018d22f1861cb5259096e.tar.gz
scummvm-rg350-3582fe9a60834d08514018d22f1861cb5259096e.tar.bz2
scummvm-rg350-3582fe9a60834d08514018d22f1861cb5259096e.zip
GLK: FROTZ: Properly have first text screen cover title screen in Arthur intro
Diffstat (limited to 'engines/glk/frotz')
-rw-r--r--engines/glk/frotz/screen.cpp1
-rw-r--r--engines/glk/frotz/windows.cpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/frotz/screen.cpp b/engines/glk/frotz/screen.cpp
index 3ac697c148..4a2eff677c 100644
--- a/engines/glk/frotz/screen.cpp
+++ b/engines/glk/frotz/screen.cpp
@@ -68,6 +68,7 @@ void FrotzScreen::loadVersion6Fonts(Common::Archive *archive) {
g_vm->_defaultForeground = 0;
g_vm->_defaultBackground = (int)zcolor_Transparent;
g_conf->_tMarginX = 3;
+ g_conf->_tMarginY = 3;
for (uint idx = 0; idx < style_NUMSTYLES; ++idx) {
g_conf->_tStyles[idx].bg = g_conf->_tStylesDefault[idx].bg = zcolor_Transparent;
diff --git a/engines/glk/frotz/windows.cpp b/engines/glk/frotz/windows.cpp
index 824bec5c64..9f7dd83fec 100644
--- a/engines/glk/frotz/windows.cpp
+++ b/engines/glk/frotz/windows.cpp
@@ -354,8 +354,8 @@ void Window::createGlkWindow() {
}
updateStyle();
- setPosition();
setSize();
+ setPosition();
setCursor();
g_vm->glk_set_window(_win);