Previous 199869 Revisions Next

r32888 Thursday 23rd October, 2014 at 02:47:23 UTC by Carl
upd7220: don't skip every other line in mixed mode (nw)
[src/emu/video]upd7220.c

trunk/src/emu/video/upd7220.c
r241399r241400
775775
776776void upd7220_device::draw_pixel(int x, int y, int xi, UINT16 tile_data)
777777{
778   UINT32 addr = ((y * m_pitch * 2) + (x >> 3)) & 0x3ffff;
778   UINT32 addr = ((y * (m_pitch << (m_figs.m_gd ? 0 : 1))) + (x >> 3)) & 0x3ffff;
779779   UINT8 data = readbyte(addr);
780780   UINT8 new_pixel = (xi & 8 ? tile_data >> 8 : tile_data & 0xff) & (0x80 >> (xi & 7));
781781   new_pixel = new_pixel ? (0xff & (0x80 >> (x & 7))) : 0;
r241399r241400
15841584                     Quarth (PC-98xx) doesn't seem to use pitch here and it definitely wants bsy to be /2 to make scrolling to work.
15851585                     Xevious (PC-98xx) wants the pitch to be fixed at 80, and wants bsy to be /1
15861586                     Dragon Buster (PC-98xx) contradicts with Xevious with regards of the pitch tho ... */
1587            addr = ((sad << 1) & 0x3ffff) + (y * m_pitch * 2);
1587            addr = ((sad << 1) & 0x3ffff) + (y * (m_pitch << (im ? 0 : 1)));
15881588
15891589            if (!m_display_cb.isnull())
15901590               draw_graphics_line(bitmap, addr, y + (im ? bsy : (bsy >> 1)), wd);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team