diff options
author | Travis Howell | 2006-02-03 05:47:40 +0000 |
---|---|---|
committer | Travis Howell | 2006-02-03 05:47:40 +0000 |
commit | 4df095cb36369c72075744dc3521aa9c2f31218c (patch) | |
tree | d2aa04a393fb2d5e9ee9a9f9f8aabefe1a4669c0 /scumm | |
parent | da33aa319bf5b5ae91650eaa9d24ef412a5d9af5 (diff) | |
download | scummvm-rg350-4df095cb36369c72075744dc3521aa9c2f31218c.tar.gz scummvm-rg350-4df095cb36369c72075744dc3521aa9c2f31218c.tar.bz2 scummvm-rg350-4df095cb36369c72075744dc3521aa9c2f31218c.zip |
Reverse to match values.
svn-id: r20354
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/akos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index b5c0ef3700..63bb44fc36 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -475,7 +475,7 @@ byte AkosRenderer::drawLimb(const Actor *a, int limb) { if (cond == 0) { decflag = 1; } else { - uint32 type = cond & 0xC0000000; + uint32 type = cond & ~0x3FFFFFFF; cond &= 0x3FFFFFFF; if (_vm->_heversion >= 90) { shadowMask = cond & 0xE000; |