summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shaolins.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shaolins.cpp')
-rw-r--r--src/mame/video/shaolins.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/shaolins.cpp b/src/mame/video/shaolins.cpp
index e3ecdc9d8a3..62dfbe2fc54 100644
--- a/src/mame/video/shaolins.cpp
+++ b/src/mame/video/shaolins.cpp
@@ -119,7 +119,7 @@ WRITE8_MEMBER(shaolins_state::nmi_w)
flip_screen_set(data & 0x01);
machine().tilemap().mark_all_dirty();
}
-
+
machine().bookkeeping().coin_counter_w(0,data & 0x08);
machine().bookkeeping().coin_counter_w(1,data & 0x10);
}
@@ -153,7 +153,7 @@ void shaolins_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprec
// TODO: understand actual disabling conditions (either by schematics or by probing the real HW)
if (m_spriteram[0] == 0)
return;
-
+
for (int offs = m_spriteram.bytes() - 32; offs >= 0x100; offs -= 32 ) /* max 24 sprites */
{
if (m_spriteram[offs] && m_spriteram[offs + 6]) /* stop rogue sprites on high score screen */