mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
compile fix (nw)
This commit is contained in:
parent
3fc42de4e3
commit
50a289eac3
@ -1835,11 +1835,11 @@ void gba_state::draw_scanline(int y)
|
|||||||
else
|
else
|
||||||
submode = GBA_SUBMODE2;
|
submode = GBA_SUBMODE2;
|
||||||
|
|
||||||
if (m_DISPCNT & 7 == 3)
|
if ((m_DISPCNT & 7) == 3)
|
||||||
depth = 16;
|
depth = 16;
|
||||||
else if (m_DISPCNT & 7 == 4)
|
else if ((m_DISPCNT & 7) == 4)
|
||||||
depth = 8;
|
depth = 8;
|
||||||
else if (m_DISPCNT & 7 == 5)
|
else if ((m_DISPCNT & 7) == 5)
|
||||||
depth = 4;
|
depth = 4;
|
||||||
|
|
||||||
//printf("mode = %d, %d\n", m_DISPCNT & 7, submode);
|
//printf("mode = %d, %d\n", m_DISPCNT & 7, submode);
|
||||||
|
Loading…
Reference in New Issue
Block a user