kiwako/mrjong.cpp: Fixed horizontal sprite offset when screen is flipped. (#10705)

This commit is contained in:
Pierre Cornier 2022-12-20 08:17:49 +01:00 committed by GitHub
parent a4451cadd1
commit 42cfed35b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;