diff options
| author | Travis Howell | 2004-01-16 10:20:43 +0000 | 
|---|---|---|
| committer | Travis Howell | 2004-01-16 10:20:43 +0000 | 
| commit | bd3f51dfdfd563532a7cc228139dd60d8f6451a4 (patch) | |
| tree | 6e69bedbbcd5494727a3ce44e79f0f9c0da17c02 | |
| parent | 6b923d306b456d99aef27b4b16c27855ed524d9a (diff) | |
| download | scummvm-rg350-bd3f51dfdfd563532a7cc228139dd60d8f6451a4.tar.gz scummvm-rg350-bd3f51dfdfd563532a7cc228139dd60d8f6451a4.tar.bz2 scummvm-rg350-bd3f51dfdfd563532a7cc228139dd60d8f6451a4.zip | |
Fix verbs regression.
svn-id: r12429
| -rw-r--r-- | scumm/verbs.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp index 93a0d13fd8..b5e1b235c9 100644 --- a/scumm/verbs.cpp +++ b/scumm/verbs.cpp @@ -491,7 +491,7 @@ void ScummEngine::drawVerbBitmap(int verb, int x, int y) {  	vst = &_verbs[verb];  	vst->curRect.right = vst->curRect.left + imgw * 8; -	vst->curRect.bottom = vst->curRect.right + imgh * 8; +	vst->curRect.bottom = vst->curRect.top + imgh * 8;  	vst->oldRect = vst->curRect;  	gdi.enableZBuffer(); | 
