mirror of
https://github.com/holub/mame
synced 2025-07-01 00:09:18 +03:00
video/jagblit.c: Fixed blitter source shade mode.
This commit is contained in:
parent
a8af9bbe25
commit
34f6f793ef
@ -440,7 +440,7 @@ void jaguar_state::FUNCNAME(UINT32 command, UINT32 a1flags, UINT32 a2flags)
|
|||||||
if (COMMAND & 0x40000000)
|
if (COMMAND & 0x40000000)
|
||||||
{
|
{
|
||||||
int intensity = srcdata & 0x00ff;
|
int intensity = srcdata & 0x00ff;
|
||||||
intensity += (INT8) (m_blitter_regs[B_Z3] >> 16);
|
intensity += (INT8) (m_blitter_regs[B_IINC] >> 16);
|
||||||
if (intensity < 0)
|
if (intensity < 0)
|
||||||
intensity = 0;
|
intensity = 0;
|
||||||
else if (intensity > 0xff)
|
else if (intensity > 0xff)
|
||||||
|
Loading…
Reference in New Issue
Block a user