mirror of
https://github.com/holub/mame
synced 2025-07-05 01:48:29 +03:00
and rolcrush (nw)
This commit is contained in:
parent
9937f167c0
commit
0e8d3e4bb3
@ -361,10 +361,10 @@ UINT32 dreamwld_state::screen_update_dreamwld(screen_device &screen, bitmap_ind1
|
|||||||
else
|
else
|
||||||
/* per-line rowscroll */
|
/* per-line rowscroll */
|
||||||
x0 = linebase[(i+32)&0xff];
|
x0 = linebase[(i+32)&0xff];
|
||||||
}
|
}
|
||||||
|
|
||||||
tmptilemap0->set_scrollx(
|
tmptilemap0->set_scrollx(
|
||||||
(i + layer0_scrolly) % 1024,
|
(i + layer0_scrolly) & 0x3ff,
|
||||||
layer0_scrollx + x0 );
|
layer0_scrollx + x0 );
|
||||||
|
|
||||||
|
|
||||||
@ -383,8 +383,9 @@ UINT32 dreamwld_state::screen_update_dreamwld(screen_device &screen, bitmap_ind1
|
|||||||
|
|
||||||
|
|
||||||
tmptilemap1->set_scrollx(
|
tmptilemap1->set_scrollx(
|
||||||
(i + layer1_scrolly) % 1024,
|
(i + layer1_scrolly) & 0x3ff,
|
||||||
layer1_scrollx + x1 );
|
layer1_scrollx + x1 );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user