3dom2_te - Fix constant color register channel extraction (nw)

This commit is contained in:
Philip Bennett 2018-12-24 06:23:17 -08:00 committed by Vas Crabb
parent 0bd980b12a
commit 764935759e

View File

@ -2342,8 +2342,8 @@ void m2_te_device::select_lerp( uint32_t sel,
{
uint32_t cnst = ssbt ? m_tm.tex_srcconst3 : m_tm.tex_srcconst2;
ar = (cnst >> 24) & 0xff;
ag = (cnst >> 16) & 0xff;
ar = (cnst >> 16) & 0xff;
ag = (cnst >> 8) & 0xff;
ab = (cnst >> 0) & 0xff;
break;
}