summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dynax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dynax.cpp')
-rw-r--r--src/mame/video/dynax.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mame/video/dynax.cpp b/src/mame/video/dynax.cpp
index ed484338348..6177c371c92 100644
--- a/src/mame/video/dynax.cpp
+++ b/src/mame/video/dynax.cpp
@@ -885,7 +885,7 @@ void dynax_state::dynax_common_reset()
save_item(NAME(m_hanamai_priority));
}
-void dynax_state::video_start_hanamai()
+VIDEO_START_MEMBER(dynax_state,hanamai)
{
m_pixmap[0][0] = std::make_unique<uint8_t[]>(256 * 256);
m_pixmap[0][1] = std::make_unique<uint8_t[]>(256 * 256);
@@ -909,7 +909,7 @@ void dynax_state::video_start_hanamai()
save_pointer(NAME(m_pixmap[3][1].get()), 256 * 256);
}
-void dynax_state::video_start_hnoridur()
+VIDEO_START_MEMBER(dynax_state,hnoridur)
{
m_pixmap[0][0] = std::make_unique<uint8_t[]>(256 * 256);
m_pixmap[0][1] = std::make_unique<uint8_t[]>(256 * 256);
@@ -935,13 +935,13 @@ void dynax_state::video_start_hnoridur()
save_pointer(NAME(m_pixmap[3][1].get()), 256 * 256);
}
-void dynax_state::video_start_mcnpshnt()
+VIDEO_START_MEMBER(dynax_state,mcnpshnt)
{
- video_start_hnoridur();
+ VIDEO_START_CALL_MEMBER(hnoridur);
m_priority_table = priority_mcnpshnt;
}
-void dynax_state::video_start_sprtmtch()
+VIDEO_START_MEMBER(dynax_state,sprtmtch)
{
m_pixmap[0][0] = std::make_unique<uint8_t[]>(256 * 256);
m_pixmap[0][1] = std::make_unique<uint8_t[]>(256 * 256);
@@ -961,7 +961,7 @@ void dynax_state::video_start_sprtmtch()
save_pointer(NAME(m_pixmap[2][1].get()), 256 * 256);
}
-void dynax_state::video_start_jantouki()
+VIDEO_START_MEMBER(dynax_state,jantouki)
{
m_pixmap[0][0] = std::make_unique<uint8_t[]>(256 * 256);
m_pixmap[0][1] = std::make_unique<uint8_t[]>(256 * 256);
@@ -1002,7 +1002,7 @@ void dynax_state::video_start_jantouki()
save_pointer(NAME(m_pixmap[7][1].get()), 256 * 256);
}
-void dynax_state::video_start_mjdialq2()
+VIDEO_START_MEMBER(dynax_state,mjdialq2)
{
m_pixmap[0][0] = std::make_unique<uint8_t[]>(256 * 256);
m_pixmap[1][0] = std::make_unique<uint8_t[]>(256 * 256);
@@ -1015,33 +1015,33 @@ void dynax_state::video_start_mjdialq2()
save_pointer(NAME(m_pixmap[1][0].get()), 256 * 256);
}
-void dynax_state::video_start_mjelctrn()
+VIDEO_START_MEMBER(dynax_state,mjelctrn)
{
- video_start_hnoridur();
+ VIDEO_START_CALL_MEMBER(hnoridur);
m_priority_table = priority_mjelctrn;
m_update_irq_func = &dynax_state::mjelctrn_update_irq;
}
-void dynax_state::video_start_mjembase()
+VIDEO_START_MEMBER(dynax_state,mjembase)
{
- video_start_hnoridur();
+ VIDEO_START_CALL_MEMBER(hnoridur);
m_priority_table = priority_mjembase;
m_update_irq_func = &dynax_state::mjelctrn_update_irq;
}
-void dynax_state::video_start_neruton()
+VIDEO_START_MEMBER(dynax_state,neruton)
{
- video_start_hnoridur();
+ VIDEO_START_CALL_MEMBER(hnoridur);
// m_priority_table = priority_mjelctrn;
m_update_irq_func = &dynax_state::mjelctrn_update_irq;
}
-void dynax_state::video_start_tenkai()
+VIDEO_START_MEMBER(dynax_state,tenkai)
{
- video_start_hnoridur();
+ VIDEO_START_CALL_MEMBER(hnoridur);
m_priority_table = priority_mjelctrn;
m_update_irq_func = &dynax_state::tenkai_update_irq;