aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-21 00:05:20 +0000
committerMax Horn2002-12-21 00:05:20 +0000
commit7de2c661940c2df1d6f559c7f507ee99c86fbbf6 (patch)
tree1604120f47e781704551b4523a5921febb3df02b /scumm/verbs.cpp
parent5b6f97b8c446841c9d098b54056403d5b7255409 (diff)
downloadscummvm-rg350-7de2c661940c2df1d6f559c7f507ee99c86fbbf6.tar.gz
scummvm-rg350-7de2c661940c2df1d6f559c7f507ee99c86fbbf6.tar.bz2
scummvm-rg350-7de2c661940c2df1d6f559c7f507ee99c86fbbf6.zip
use dbAllowMaskOr instead of 'true' (which was confusing)
svn-id: r6033
Diffstat (limited to 'scumm/verbs.cpp')
-rw-r--r--scumm/verbs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 84e0f1f3fd..924c2bd6e1 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -234,7 +234,7 @@ void Scumm::drawVerbBitmap(int verb, int x, int y)
for (i = 0; i < imgw; i++) {
tmp = xstrip + i;
if (tmp < gdi._numStrips)
- gdi.drawBitmap(imptr, vs, tmp, ydiff, imgh << 3, i, 1, true);
+ gdi.drawBitmap(imptr, vs, tmp, ydiff, imgh << 3, i, 1, Gdi::dbAllowMaskOr);
}
vst = &_verbs[verb];