mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
kiwako/mrjong.cpp: Fixed horizontal sprite offset when screen is flipped. (#10705)
This commit is contained in:
parent
a4451cadd1
commit
42cfed35b6
@ -206,7 +206,7 @@ void mrjong_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect)
|
||||
int sy = m_videoram[offs + 0];
|
||||
if (flip_screen())
|
||||
{
|
||||
sx = 208 - sx;
|
||||
sx = 192 - sx;
|
||||
sy = 240 - sy;
|
||||
flipx = !flipx;
|
||||
flipy = !flipy;
|
||||
|
Loading…
Reference in New Issue
Block a user