summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-12-04 01:04:45 +0900
committer R. Belmont <rb6502@users.noreply.github.com>2019-12-03 11:04:45 -0500
commitb9f0b7629b78bb8fd2370a58befa8e39b842d8be (patch)
tree270e0a4e889a32ea91f8645ab9a49ddaacbfeb7d /src/mame/video
parent907acbacce328685092205c794af19a07fc3b2e6 (diff)
namcofl.cpp : Use address_map_bank_device for ROM/RAM swapping, Use raw parameter for screen, Add notes, Fix sprite delaying, Fix namings (#5985)
finalapr : Use IMPERFECT_GRAPHICS tag related to sprite disappearing issue
Diffstat (limited to 'src/mame/video')
-rw-r--r--src/mame/video/namcofl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/namcofl.cpp b/src/mame/video/namcofl.cpp
index 8e7ec0721bc..223612f38c8 100644
--- a/src/mame/video/namcofl.cpp
+++ b/src/mame/video/namcofl.cpp
@@ -58,7 +58,7 @@ void namcofl_state::RozCB(uint16_t code, int *tile, int *mask, int which)
}
-uint32_t namcofl_state::screen_update_namcofl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t namcofl_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
/* compute window for custom screen blanking */
rectangle clip;
@@ -92,7 +92,7 @@ uint32_t namcofl_state::screen_update_namcofl(screen_device &screen, bitmap_ind1
// groups of sprites. I am unsure how to differentiate those groups
// at this time however.
-WRITE32_MEMBER(namcofl_state::namcofl_spritebank_w)
+WRITE32_MEMBER(namcofl_state::spritebank_w)
{
COMBINE_DATA(&m_sprbank);
}