aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-01-16 10:20:43 +0000
committerTravis Howell2004-01-16 10:20:43 +0000
commitbd3f51dfdfd563532a7cc228139dd60d8f6451a4 (patch)
tree6e69bedbbcd5494727a3ce44e79f0f9c0da17c02 /scumm
parent6b923d306b456d99aef27b4b16c27855ed524d9a (diff)
downloadscummvm-rg350-bd3f51dfdfd563532a7cc228139dd60d8f6451a4.tar.gz
scummvm-rg350-bd3f51dfdfd563532a7cc228139dd60d8f6451a4.tar.bz2
scummvm-rg350-bd3f51dfdfd563532a7cc228139dd60d8f6451a4.zip
Fix verbs regression.
svn-id: r12429
Diffstat (limited to 'scumm')
-rw-r--r--scumm/verbs.cpp2
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();