diff options
author | Travis Howell | 2004-10-08 09:43:33 +0000 |
---|---|---|
committer | Travis Howell | 2004-10-08 09:43:33 +0000 |
commit | 251a44ea9bbc32744459b8b774ffc83a41c54d7d (patch) | |
tree | 4d335008a98e3f256d26e65fa1b020ccbc528b9e | |
parent | 7eb10f167cce7d7d221ade3596d7f597ec00e045 (diff) | |
download | scummvm-rg350-251a44ea9bbc32744459b8b774ffc83a41c54d7d.tar.gz scummvm-rg350-251a44ea9bbc32744459b8b774ffc83a41c54d7d.tar.bz2 scummvm-rg350-251a44ea9bbc32744459b8b774ffc83a41c54d7d.zip |
Partial inventory fix for HE games.
svn-id: r15468
-rw-r--r-- | scumm/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index 116518c7a0..ca4b6093f0 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -1381,7 +1381,7 @@ void Gdi::drawBMAPBg(const byte *ptr, VirtScreen *vs, int startstrip) { _decomp_shr = code % 10; _decomp_mask = 0xFF >> (8 - _decomp_shr); - drawStripHE((byte *)vs->backBuf, vs->pitch, bmap_ptr, vs->w, vs->h, false); + drawStripHE((byte *)vs->backBuf, vs->pitch, bmap_ptr, vs->w, vs->h, true); } copyVirtScreenBuffers(Common::Rect(vs->w, vs->h)); |