summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ojankohs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ojankohs.cpp')
-rw-r--r--src/mame/video/ojankohs.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/ojankohs.cpp b/src/mame/video/ojankohs.cpp
index 6d27a04a4cb..8e3fa06c6c8 100644
--- a/src/mame/video/ojankohs.cpp
+++ b/src/mame/video/ojankohs.cpp
@@ -254,7 +254,7 @@ WRITE8_MEMBER(ojankohs_state::ojankoc_videoram_w)
******************************************************************************/
-void ojankohs_state::video_start_ojankohs()
+VIDEO_START_MEMBER(ojankohs_state,ojankohs)
{
m_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(ojankohs_state::ojankohs_get_tile_info),this), TILEMAP_SCAN_ROWS, 8, 4, 64, 64);
// m_videoram = std::make_unique<uint8_t[]>(0x1000);
@@ -262,20 +262,20 @@ void ojankohs_state::video_start_ojankohs()
// m_paletteram = std::make_unique<uint8_t[]>(0x800);
}
-void ojankohs_state::video_start_ojankoy()
+VIDEO_START_MEMBER(ojankohs_state,ojankoy)
{
m_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(ojankohs_state::ojankoy_get_tile_info),this), TILEMAP_SCAN_ROWS, 8, 4, 64, 64);
// m_videoram = std::make_unique<uint8_t[]>(0x2000);
// m_colorram = std::make_unique<uint8_t[]>(0x1000);
}
-void ojankohs_state::video_start_ccasino()
+VIDEO_START_MEMBER(ojankohs_state,ccasino)
{
- video_start_ojankoy();
+ VIDEO_START_CALL_MEMBER(ojankoy);
m_paletteram.allocate(0x800);
}
-void ojankohs_state::video_start_ojankoc()
+VIDEO_START_MEMBER(ojankohs_state,ojankoc)
{
m_screen->register_screen_bitmap(m_tmpbitmap);
m_videoram.allocate(0x8000);