mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +03:00
toprollr: fix bigsprite layer in cocktail mode
This commit is contained in:
parent
9fe0f17f1b
commit
32c507d34d
@ -163,7 +163,6 @@ TODO:
|
||||
|
||||
TODO:
|
||||
- COINB DSW is missing
|
||||
- few issues in cocktail mode
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
|
@ -538,6 +538,9 @@ void cclimber_state::toprollr_draw_bigsprite(screen_device &screen, bitmap_ind16
|
||||
uint8_t x = m_bigsprite_control[3] - 8;
|
||||
uint8_t y = m_bigsprite_control[2];
|
||||
|
||||
if (m_flip_x)
|
||||
x = 0x80 - x;
|
||||
|
||||
m_bs_tilemap->mark_all_dirty();
|
||||
|
||||
m_bs_tilemap->set_flip((m_flip_x ? TILEMAP_FLIPX : 0) | (m_flip_y ? TILEMAP_FLIPY : 0));
|
||||
|
Loading…
Reference in New Issue
Block a user