mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
fix build (nw)
This commit is contained in:
parent
26b61e2be6
commit
966b8599be
@ -213,9 +213,9 @@ WRITE16_MEMBER(pasha2_state::pasha2_lamps_w)
|
||||
{
|
||||
for (int p = 0; p < 3; p++)
|
||||
{
|
||||
m_lamps_r[i] = BIT(data, 4 * p);
|
||||
m_lamps_g[i] = BIT(data, 4 * p + 1);
|
||||
m_lamps_b[i] = BIT(data, 4 * p + 2);
|
||||
m_lamps_r[p] = BIT(data, (p << 2) | 0);
|
||||
m_lamps_g[p] = BIT(data, (p << 2) | 1);
|
||||
m_lamps_b[p] = BIT(data, (p << 2) | 2);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user