Previous 199869 Revisions Next

r33190 Tuesday 4th November, 2014 at 01:22:38 UTC by Carl
(mess) upd7220: duh (nw)
[src/emu/video]upd7220.c

trunk/src/emu/video/upd7220.c
r241701r241702
16101610                     Quarth (PC-98xx) doesn't seem to use pitch here and it definitely wants bsy to be /2 to make scrolling to work.
16111611                     Xevious (PC-98xx) wants the pitch to be fixed at 80, and wants bsy to be /1
16121612                     Dragon Buster (PC-98xx) contradicts with Xevious with regards of the pitch tho ... */
1613            addr = ((sad << 1) & 0x3ffff) + (y * (m_aw << (im ? 0 : 1)));
1613            addr = ((sad << 1) & 0x3ffff) + (y * (m_pitch << (im ? 0 : 1)));
16141614
16151615            if (!m_display_cb.isnull())
16161616               draw_graphics_line(bitmap, addr, y + (bsy / (mixed ? 1 : m_lr)), wd);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team