aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-08-29 06:53:00 +0000
committerTravis Howell2003-08-29 06:53:00 +0000
commitbed0061362e9202ad7605297d16b5489dcd956ce (patch)
treec0af8bfba7c4b414981a29c072699fdfc64861c8 /scumm
parentfb060c6cbdb71caf91d8dac2b8cc046ad364441c (diff)
downloadscummvm-rg350-bed0061362e9202ad7605297d16b5489dcd956ce.tar.gz
scummvm-rg350-bed0061362e9202ad7605297d16b5489dcd956ce.tar.bz2
scummvm-rg350-bed0061362e9202ad7605297d16b5489dcd956ce.zip
Fix verbs been shown in cutscenes in v1-v2 games if loading/saving during cutscene.
svn-id: r9907
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 12b4c8464e..dd43190427 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -1290,8 +1290,10 @@ load_game:
_completeScreenRedraw = false;
gdi.clearCharsetMask();
_charset->_hasMask = false;
- for (int i = 0; i < _maxVerbs; i++)
- drawVerb(i, 0);
+ if (_version > 2) {
+ for (int i = 0; i < _maxVerbs; i++)
+ drawVerb(i, 0);
+ }
verbMouseOver(0);
if (_version <= 2) {