summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tsamurai.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tsamurai.cpp')
-rw-r--r--src/mame/video/tsamurai.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/tsamurai.cpp b/src/mame/video/tsamurai.cpp
index 8617aca95eb..9b59bcd4d8a 100644
--- a/src/mame/video/tsamurai.cpp
+++ b/src/mame/video/tsamurai.cpp
@@ -50,7 +50,7 @@ void tsamurai_state::video_start()
save_item(NAME(m_textbank1));
}
-void tsamurai_state::video_start_tsamurai()
+VIDEO_START_MEMBER(tsamurai_state, tsamurai)
{
m_background = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(tsamurai_state::get_bg_tile_info),this),TILEMAP_SCAN_ROWS,8,8,32,32);
m_foreground = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(tsamurai_state::get_fg_tile_info),this),TILEMAP_SCAN_ROWS,8,8,32,32);
@@ -62,9 +62,9 @@ void tsamurai_state::video_start_tsamurai()
video_start();
}
-void tsamurai_state::video_start_m660()
+VIDEO_START_MEMBER(tsamurai_state, m660)
{
- video_start_tsamurai();
+ VIDEO_START_CALL_MEMBER(tsamurai);
save_item(NAME(m_textbank2));
}
@@ -249,7 +249,7 @@ TILE_GET_INFO_MEMBER(tsamurai_state::get_vsgongf_tile_info)
0);
}
-void tsamurai_state::video_start_vsgongf()
+VIDEO_START_MEMBER(tsamurai_state,vsgongf)
{
m_foreground = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(tsamurai_state::get_vsgongf_tile_info),this),TILEMAP_SCAN_ROWS,8,8,32,32);