diff options
author | 2018-05-26 19:29:58 +0200 | |
---|---|---|
committer | 2018-05-26 20:41:02 +0200 | |
commit | cd08b365625dba1685ca034760e0943020156d21 (patch) | |
tree | c940d55cb3f064c5b6acec2cf61fcf2d2c5aafcc /src | |
parent | 254aeff5c7de8ec60fde8a08372055a692387288 (diff) |
tatsumi.cpp: Fix broken transparent pen (wait there's MORE!) (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/video/tatsumi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/tatsumi.cpp b/src/mame/video/tatsumi.cpp index 71154bd763b..c90d38b8410 100644 --- a/src/mame/video/tatsumi.cpp +++ b/src/mame/video/tatsumi.cpp @@ -119,7 +119,7 @@ void cyclwarr_state::tile_expand() uint8_t respix = m_cyclwarr_tileclut[(c << 3)|pix]; *dest++ = respix; // Transparent pixels are set by both the tile pixel data==0 AND colour palette==0 - m_mask[(c << 3) | (y & 7)] |= ((pix != 0) || ((pix == 0) && (respix != 0))) ? (0x80 >> (x & 7)) : 0; + m_mask[(c << 3) | (y & 7)] |= ((pix != 0) && (respix != 0)) ? (0x80 >> (x & 7)) : 0; } c0base += gx0->rowbytes(); } |