diff options
author | Max Horn | 2002-12-21 00:05:20 +0000 |
---|---|---|
committer | Max Horn | 2002-12-21 00:05:20 +0000 |
commit | 7de2c661940c2df1d6f559c7f507ee99c86fbbf6 (patch) | |
tree | 1604120f47e781704551b4523a5921febb3df02b | |
parent | 5b6f97b8c446841c9d098b54056403d5b7255409 (diff) | |
download | scummvm-rg350-7de2c661940c2df1d6f559c7f507ee99c86fbbf6.tar.gz scummvm-rg350-7de2c661940c2df1d6f559c7f507ee99c86fbbf6.tar.bz2 scummvm-rg350-7de2c661940c2df1d6f559c7f507ee99c86fbbf6.zip |
use dbAllowMaskOr instead of 'true' (which was confusing)
svn-id: r6033
-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 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]; |