mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
flower.cpp: fix rightmost columns getting stuck (nw)
This commit is contained in:
parent
392abd2cf3
commit
596ccff832
@ -144,7 +144,7 @@ void flower_state::legacy_tx_draw(bitmap_ind16 &bitmap,const rectangle &cliprect
|
||||
gfx_0->transpen(bitmap,cliprect,tile,attr >> 2,0,0,x*8,y*8,3);
|
||||
}
|
||||
|
||||
for (count=0;count<4*32;count++)
|
||||
for (count=0;count<0x40;count++)
|
||||
{
|
||||
int x = count / 32;
|
||||
int y = count % 32;
|
||||
@ -246,6 +246,7 @@ void flower_state::sprites_draw(bitmap_ind16 &bitmap,const rectangle &cliprect)
|
||||
|
||||
uint32_t flower_state::screen_update( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect )
|
||||
{
|
||||
bitmap.fill(0,cliprect);
|
||||
legacy_layers_draw(bitmap,cliprect);
|
||||
sprites_draw(bitmap,cliprect);
|
||||
legacy_tx_draw(bitmap,cliprect);
|
||||
|
Loading…
Reference in New Issue
Block a user