trunk/src/emu/video/upd7220.c
r241701 | r241702 | |
1610 | 1610 | Quarth (PC-98xx) doesn't seem to use pitch here and it definitely wants bsy to be /2 to make scrolling to work. |
1611 | 1611 | Xevious (PC-98xx) wants the pitch to be fixed at 80, and wants bsy to be /1 |
1612 | 1612 | 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))); |
1614 | 1614 | |
1615 | 1615 | if (!m_display_cb.isnull()) |
1616 | 1616 | draw_graphics_line(bitmap, addr, y + (bsy / (mixed ? 1 : m_lr)), wd); |