From 34f6f793efef226d85276c186c3378525b0f4760 Mon Sep 17 00:00:00 2001 From: Ville Linde Date: Wed, 13 Feb 2013 17:04:02 +0000 Subject: [PATCH] video/jagblit.c: Fixed blitter source shade mode. --- src/mame/video/jagblit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/jagblit.c b/src/mame/video/jagblit.c index ec05ce31782..2849d8b6cc6 100644 --- a/src/mame/video/jagblit.c +++ b/src/mame/video/jagblit.c @@ -440,7 +440,7 @@ void jaguar_state::FUNCNAME(UINT32 command, UINT32 a1flags, UINT32 a2flags) if (COMMAND & 0x40000000) { int intensity = srcdata & 0x00ff; - intensity += (INT8) (m_blitter_regs[B_Z3] >> 16); + intensity += (INT8) (m_blitter_regs[B_IINC] >> 16); if (intensity < 0) intensity = 0; else if (intensity > 0xff)