summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/expro02.cpp
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2020-01-23 00:02:03 +0900
committer cam900 <dbtlrchl@naver.com>2020-01-23 00:02:03 +0900
commit4b428e5bca190914558e20c7f0e34cb8323ebb49 (patch)
tree4f48c64fafe4339a62891c486e545594a9e1754d /src/mame/drivers/expro02.cpp
parent05c427f41397c0c24f2b66ab03ca0d9035c99b54 (diff)
kaneko_spr.cpp : Fix drawing behavior
Fix priority in enabled 'keep sprite' function, Split 'Copy temporary bitmap into screen bitmap' function and Getting sprite function kaneko16.cpp : Fix sprite delay, Add notes, Correct explbrkr OKI bankswitching (tied into m_ym2149[0] port B), Remove outdated note
Diffstat (limited to 'src/mame/drivers/expro02.cpp')
-rw-r--r--src/mame/drivers/expro02.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/expro02.cpp b/src/mame/drivers/expro02.cpp
index 875febac064..494d384efa3 100644
--- a/src/mame/drivers/expro02.cpp
+++ b/src/mame/drivers/expro02.cpp
@@ -390,7 +390,8 @@ uint32_t expro02_state::screen_update_backgrounds(screen_device &screen, bitmap_
uint32_t expro02_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
screen_update_backgrounds(screen, bitmap, cliprect);
- m_kaneko_spr->render_sprites(bitmap,cliprect, screen.priority(), m_spriteram, m_spriteram.bytes());
+ m_kaneko_spr->render_sprites(cliprect, m_spriteram, m_spriteram.bytes());
+ m_kaneko_spr->copybitmap(bitmap, cliprect, screen.priority());
return 0;
}