aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-06-06 05:27:45 +0000
committerPaweł Kołodziejski2003-06-06 05:27:45 +0000
commit00288b07f8463b61a39ab57eec415f149c333fb1 (patch)
tree5b039b07d2e7ca15a027b801e774716f727145e3 /scumm/verbs.cpp
parent1f846b55dce6c66b169d033dc0d8ab4a46616c37 (diff)
downloadscummvm-rg350-00288b07f8463b61a39ab57eec415f149c333fb1.tar.gz
scummvm-rg350-00288b07f8463b61a39ab57eec415f149c333fb1.tar.bz2
scummvm-rg350-00288b07f8463b61a39ab57eec415f149c333fb1.zip
fixed almost object drawing for v1 games, (ugly hack for drawBitmap)
svn-id: r8345
Diffstat (limited to 'scumm/verbs.cpp')
-rw-r--r--scumm/verbs.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 5ffa1b46c0..b9db501b88 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -453,6 +453,9 @@ void Scumm::drawVerbBitmap(int verb, int x, int y) {
error("No image for verb %d", verb);
}
assert(imptr);
+ if (_features & GF_AFTER_V1) {
+ gdi._C64ObjectMode = true;
+ }
for (i = 0; i < imgw; i++) {
tmp = xstrip + i;
if (tmp < gdi._numStrips)