star100: fix rightmost reels being cut off (nw)

This commit is contained in:
Alex W. Jackson 2014-06-17 08:14:53 +00:00
parent 435182e371
commit 954b4570a9

View File

@ -759,9 +759,9 @@ UINT32 goldstar_state::screen_update_sangho(screen_device &screen, bitmap_ind16
}
// are these hardcoded, or registers?
const rectangle visible1(0*8, (14+48)*8-1, 4*8, (4+7)*8-1);
const rectangle visible2(0*8, (14+48)*8-1, 12*8, (12+7)*8-1);
const rectangle visible3(0*8, (14+48)*8-1, 20*8, (20+7)*8-1);
const rectangle visible1(0*8, (15+48)*8-1, 4*8, (4+7)*8-1);
const rectangle visible2(0*8, (15+48)*8-1, 12*8, (12+7)*8-1);
const rectangle visible3(0*8, (15+48)*8-1, 20*8, (20+7)*8-1);
m_reel1_tilemap->draw(screen, bitmap, visible1, 0, 0);
m_reel2_tilemap->draw(screen, bitmap, visible2, 0, 0);