upd7220: fix shift expression MSVC doesn't like (nw)

This commit is contained in:
Alex W. Jackson 2014-10-22 11:13:58 -04:00
parent a96c84dc26
commit 844ad1a748

View File

@ -1587,7 +1587,7 @@ void upd7220_device::update_graphics(bitmap_rgb32 &bitmap, const rectangle &clip
addr = ((sad << 1) & 0x3ffff) + (y * m_pitch * 2);
if (!m_display_cb.isnull())
draw_graphics_line(bitmap, addr, y + (bsy >> !im), wd);
draw_graphics_line(bitmap, addr, y + (im ? bsy : (bsy >> 1)), wd);
}
}
else