From 42cfed35b6fa785d383183f7cafc001786010891 Mon Sep 17 00:00:00 2001 From: Pierre Cornier Date: Tue, 20 Dec 2022 08:17:49 +0100 Subject: kiwako/mrjong.cpp: Fixed horizontal sprite offset when screen is flipped. (#10705) --- src/mame/kiwako/mrjong.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/kiwako/mrjong.cpp b/src/mame/kiwako/mrjong.cpp index cae85c3ac5d..8d40b6015e7 100644 --- a/src/mame/kiwako/mrjong.cpp +++ b/src/mame/kiwako/mrjong.cpp @@ -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; -- cgit v1.2.3