mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
and rolcrush (nw)
This commit is contained in:
parent
9937f167c0
commit
0e8d3e4bb3
@ -364,7 +364,7 @@ UINT32 dreamwld_state::screen_update_dreamwld(screen_device &screen, bitmap_ind1
|
|||||||
}
|
}
|
||||||
|
|
||||||
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