mirror of
https://github.com/holub/mame
synced 2025-05-29 09:03:08 +03:00
psikyo.cpp: apply AJR's fix to the bootleg hardware, too (nw)
This commit is contained in:
parent
08db73db57
commit
c80846895b
@ -615,7 +615,8 @@ uint32_t psikyo_state::screen_update_psikyo_bootleg(screen_device &screen, bitma
|
||||
|
||||
if (layer_ctrl[layer] & 0x0300) /* per-line rowscroll */
|
||||
{
|
||||
int tile_rowscroll = (layer_ctrl[layer] & 0x0200) >> 5; /* per-tile rowscroll */
|
||||
int tile_rowscroll = (layer_ctrl[layer] & 0x0200) >> 7; /* per-tile rowscroll */
|
||||
assert(tile_rowscroll == 0 || tile_rowscroll == 4);
|
||||
if (m_old_linescroll[layer] != (layer_ctrl[layer] & 0x0300))
|
||||
{
|
||||
tmptilemap[layer]->set_scroll_rows(tilemap_width(tmsize[layer]) >> tile_rowscroll);
|
||||
|
Loading…
Reference in New Issue
Block a user