diff options
author | Travis Howell | 2004-08-16 04:37:58 +0000 |
---|---|---|
committer | Travis Howell | 2004-08-16 04:37:58 +0000 |
commit | 65f026732b069cfbb872edaa94c20cf142a84fe1 (patch) | |
tree | e0541c2476b840a5029592a35da993460da4b8d6 /scumm | |
parent | 7cce3cec832317f8eb03ef10b8a81c3cbeaec458 (diff) | |
download | scummvm-rg350-65f026732b069cfbb872edaa94c20cf142a84fe1.tar.gz scummvm-rg350-65f026732b069cfbb872edaa94c20cf142a84fe1.tar.bz2 scummvm-rg350-65f026732b069cfbb872edaa94c20cf142a84fe1.zip |
Fix regression in HE games
svn-id: r14633
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/base-costume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/base-costume.cpp b/scumm/base-costume.cpp index 6d5298e3fe..e0002af197 100644 --- a/scumm/base-costume.cpp +++ b/scumm/base-costume.cpp @@ -30,7 +30,7 @@ byte BaseCostumeRenderer::drawCostume(const VirtScreen &vs, const CostumeData &c byte result = 0; if (drawVirScr) - _outptr = _vm->virtscr[0].getPixels(0, 0); + _outptr = vs.getBackPixels(0, 0); else _outptr = vs.getPixels(0, 0); |