diff options
author | Max Horn | 2003-06-02 23:23:45 +0000 |
---|---|---|
committer | Max Horn | 2003-06-02 23:23:45 +0000 |
commit | cb9c64aae2fc19ce21b6d47670c8fe80abda9f29 (patch) | |
tree | b23843a64c53fe61aeae7040805688d817aee427 | |
parent | 35f29951eb2a0ba3e97c10ee5e84007064221a02 (diff) | |
download | scummvm-rg350-cb9c64aae2fc19ce21b6d47670c8fe80abda9f29.tar.gz scummvm-rg350-cb9c64aae2fc19ce21b6d47670c8fe80abda9f29.tar.bz2 scummvm-rg350-cb9c64aae2fc19ce21b6d47670c8fe80abda9f29.zip |
cleanup
svn-id: r8283
-rw-r--r-- | scumm/charset.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp index 85af1e0b84..0d3a4e6aaa 100644 --- a/scumm/charset.cpp +++ b/scumm/charset.cpp @@ -759,10 +759,7 @@ void CharsetRendererClassic::drawBits(VirtScreen *vs, byte *dst, byte *mask, int maskpos = 0; for (x = 0; x < width; x++) { - int myMask = (0xFF << (8 - _bpp)) & 0xFF; - int myColor = (bits & myMask) >> (8 - _bpp); color = (bits >> (8 - _bpp)) & 0xFF; - assert(color == myColor); if (color) { if (useMask) { |