mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
deco16ic.cpp : Fix 1 pixel glitch
This commit is contained in:
parent
100117c458
commit
10d80d2775
@ -476,7 +476,7 @@ void deco16ic_device::custom_tilemap_draw(
|
||||
src_x &= width_mask;
|
||||
|
||||
/* boogwing */
|
||||
for (int x = cliprect.left(); x < cliprect.right(); x++)
|
||||
for (int x = cliprect.left(); x <= cliprect.right(); x++)
|
||||
{
|
||||
if (rowscroll_ptr && BIT(control1, 5))
|
||||
column_offset = rowscroll_ptr[0x200 + ((src_x & 0x1ff) / col_type)];
|
||||
|
Loading…
Reference in New Issue
Block a user