aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v2.cpp
diff options
context:
space:
mode:
authorSven Hesse2007-08-03 15:18:00 +0000
committerSven Hesse2007-08-03 15:18:00 +0000
commite802f067cd96d63054b4233e44db02b660557787 (patch)
treee49723f0af30097d6a0bc323876933755bce97d3 /engines/gob/inter_v2.cpp
parent02103a65a271af647ff32928b331ee4291607931 (diff)
downloadscummvm-rg350-e802f067cd96d63054b4233e44db02b660557787.tar.gz
scummvm-rg350-e802f067cd96d63054b4233e44db02b660557787.tar.bz2
scummvm-rg350-e802f067cd96d63054b4233e44db02b660557787.zip
Lost in Time now (kind of) shows the title and the wobble-effect is drawn
svn-id: r28433
Diffstat (limited to 'engines/gob/inter_v2.cpp')
-rw-r--r--engines/gob/inter_v2.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/gob/inter_v2.cpp b/engines/gob/inter_v2.cpp
index 8cb8b706bd..476ebedddd 100644
--- a/engines/gob/inter_v2.cpp
+++ b/engines/gob/inter_v2.cpp
@@ -1375,10 +1375,12 @@ void Inter_v2::o2_initScreen() {
width = _vm->_parse->parseValExpr();
height = _vm->_parse->parseValExpr();
+ _vm->_global->_colorCount = (videoMode == 0x10) ? 16 : 256;
+
_vm->_global->_fakeVideoMode = videoMode;
// Some versions require this
- if ((videoMode == 0xD) || (videoMode == 0x10))
+ if ((videoMode == 0xD))// || (videoMode == 0x10))
videoMode = _vm->_mode;
if ((videoMode == _vm->_global->_videoMode) && (width == -1))