summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jvh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jvh.cpp')
-rw-r--r--src/mame/drivers/jvh.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/jvh.cpp b/src/mame/drivers/jvh.cpp
index f7b85cdde5b..ac936793cf9 100644
--- a/src/mame/drivers/jvh.cpp
+++ b/src/mame/drivers/jvh.cpp
@@ -35,7 +35,7 @@ protected:
// driver_device overrides
virtual void machine_reset() override;
public:
- DECLARE_DRIVER_INIT(jvh);
+ void init_jvh();
};
@@ -115,7 +115,7 @@ void jvh_state::machine_reset()
{
}
-DRIVER_INIT_MEMBER(jvh_state,jvh)
+void jvh_state::init_jvh()
{
}
@@ -168,5 +168,5 @@ ROM_START(movmastr)
ROM_END
-GAME(1987, escape, 0, jvh, jvh, jvh_state, jvh, ROT0, "Jac Van Ham (Royal)", "Escape", MACHINE_IS_SKELETON_MECHANICAL)
-GAME(19??, movmastr, 0, jvh2, jvh, jvh_state, jvh, ROT0, "Jac Van Ham (Royal)", "Movie Masters", MACHINE_IS_SKELETON_MECHANICAL)
+GAME( 1987, escape, 0, jvh, jvh, jvh_state, init_jvh, ROT0, "Jac Van Ham (Royal)", "Escape", MACHINE_IS_SKELETON_MECHANICAL)
+GAME( 19??, movmastr, 0, jvh2, jvh, jvh_state, init_jvh, ROT0, "Jac Van Ham (Royal)", "Movie Masters", MACHINE_IS_SKELETON_MECHANICAL)