aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-10-27 18:41:27 +0000
committerPaweł Kołodziejski2002-10-27 18:41:27 +0000
commit0e705b326be540ec69aa59ff265c7b66e18bf122 (patch)
treea76280dcece0e67b97f97580cebcaddb7024a2d2 /scumm/gfx.cpp
parent8e422b782515e3b1dbad2e003cdc42a652ac1ac9 (diff)
downloadscummvm-rg350-0e705b326be540ec69aa59ff265c7b66e18bf122.tar.gz
scummvm-rg350-0e705b326be540ec69aa59ff265c7b66e18bf122.tar.bz2
scummvm-rg350-0e705b326be540ec69aa59ff265c7b66e18bf122.zip
changed param in initVirtScreen in initScreens
svn-id: r5336
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 19965a6c1b..c9416f60ca 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -66,7 +66,11 @@ void Scumm::initScreens(int a, int b, int w, int h)
}
if (!getResourceAddress(rtBuffer, 4)) {
- initVirtScreen(3, 0, 80, _realWidth, 13, false, false);
+ if (_features & GF_AFTER_V7) {
+ initVirtScreen(3, 0, (_realHeight / 2) - 10, _realWidth, 13, false, false);
+ } else {
+ initVirtScreen(3, 0, 80, _realWidth, 13, false, false);
+ }
}
initVirtScreen(0, 0, b, _realWidth, h - b, true, true);
initVirtScreen(1, 0, 0, _realWidth, b, false, false);