aboutsummaryrefslogtreecommitdiff
path: root/scumm/base-costume.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/base-costume.cpp')
-rw-r--r--scumm/base-costume.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/base-costume.cpp b/scumm/base-costume.cpp
index 718678ec99..6d5298e3fe 100644
--- a/scumm/base-costume.cpp
+++ b/scumm/base-costume.cpp
@@ -30,13 +30,13 @@ byte BaseCostumeRenderer::drawCostume(const VirtScreen &vs, const CostumeData &c
byte result = 0;
if (drawVirScr)
- _outptr = _vm->getResourceAddress(rtBuffer, 5) + vs.xstart;
+ _outptr = _vm->virtscr[0].getPixels(0, 0);
else
- _outptr = vs.screenPtr + vs.xstart;
+ _outptr = vs.getPixels(0, 0);
- _outwidth = vs.width;
- _outheight = vs.height;
- _numStrips = vs.width / 8;
+ _outwidth = vs.w;
+ _outheight = vs.h;
+ _numStrips = _outwidth / 8;
if (_vm->_version == 1) {
_xmove = 0;