mirror of
https://github.com/holub/mame
synced 2025-06-09 06:13:04 +03:00
Merge pull request #6318 from cam900/patch-127
deco16ic.cpp : Fix 1 pixel glitch
This commit is contained in:
commit
9e9325a23d
@ -476,7 +476,7 @@ void deco16ic_device::custom_tilemap_draw(
|
|||||||
src_x &= width_mask;
|
src_x &= width_mask;
|
||||||
|
|
||||||
/* boogwing */
|
/* 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))
|
if (rowscroll_ptr && BIT(control1, 5))
|
||||||
column_offset = rowscroll_ptr[0x200 + ((src_x & 0x1ff) / col_type)];
|
column_offset = rowscroll_ptr[0x200 + ((src_x & 0x1ff) / col_type)];
|
||||||
|
Loading…
Reference in New Issue
Block a user