diff options
| author | Travis Howell | 2003-08-29 07:07:55 +0000 | 
|---|---|---|
| committer | Travis Howell | 2003-08-29 07:07:55 +0000 | 
| commit | ef4fdd03f008fd096b7e34c6015b1b80020e329b (patch) | |
| tree | 9484bc1999f173b39ddb8d7c75eb3f84d2deeb37 /scumm/verbs.cpp | |
| parent | bed0061362e9202ad7605297d16b5489dcd956ce (diff) | |
| download | scummvm-rg350-ef4fdd03f008fd096b7e34c6015b1b80020e329b.tar.gz scummvm-rg350-ef4fdd03f008fd096b7e34c6015b1b80020e329b.tar.bz2 scummvm-rg350-ef4fdd03f008fd096b7e34c6015b1b80020e329b.zip  | |
My last commit was wrong, this is correct solution.
svn-id: r9908
Diffstat (limited to 'scumm/verbs.cpp')
| -rw-r--r-- | scumm/verbs.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp index 82cc289562..c5981a1f10 100644 --- a/scumm/verbs.cpp +++ b/scumm/verbs.cpp @@ -359,6 +359,9 @@ int Scumm::checkMouseOver(int x, int y) const {  }  void Scumm::drawVerb(int verb, int mode) { +	if (_version <= 2 && !(_userState & 128)) // Don't draw verbs unless active +		return; +  	VerbSlot *vs;  	bool tmp;  | 
