summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/calcune.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/calcune.cpp')
-rw-r--r--src/mame/drivers/calcune.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/calcune.cpp b/src/mame/drivers/calcune.cpp
index 2de18da5e3e..c84e53cd43b 100644
--- a/src/mame/drivers/calcune.cpp
+++ b/src/mame/drivers/calcune.cpp
@@ -46,7 +46,7 @@ public:
IRQ_CALLBACK_MEMBER(genesis_int_callback);
- DECLARE_DRIVER_INIT(calcune);
+ void init_calcune();
DECLARE_READ16_MEMBER(cal_700000_r);
DECLARE_WRITE16_MEMBER(cal_770000_w);
@@ -306,7 +306,7 @@ MACHINE_CONFIG_START(calcune_state::calcune)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker",0.25)
MACHINE_CONFIG_END
-DRIVER_INIT_MEMBER(calcune_state,calcune)
+void calcune_state::init_calcune()
{
m_vdp->set_use_cram(1);
m_vdp->set_vdp_pal(false);
@@ -335,4 +335,4 @@ ROM_END
-GAME( 1996, calcune, 0, calcune, calcune, calcune_state, calcune, ROT0, "Yuvo", "Calcune (Japan, prototype)", 0 )
+GAME( 1996, calcune, 0, calcune, calcune, calcune_state, init_calcune, ROT0, "Yuvo", "Calcune (Japan, prototype)", 0 )