summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fungames.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fungames.cpp')
-rw-r--r--src/mame/drivers/fungames.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/fungames.cpp b/src/mame/drivers/fungames.cpp
index ac526d7153c..5f9ab905536 100644
--- a/src/mame/drivers/fungames.cpp
+++ b/src/mame/drivers/fungames.cpp
@@ -47,7 +47,7 @@ public:
}
// devices
- required_device<netlist_mame_device_t> m_maincpu;
+ required_device<netlist_mame_device> m_maincpu;
required_device<fixedfreq_device> m_video;
protected:
@@ -90,7 +90,7 @@ void fungames_state::video_start()
{
}
-static MACHINE_CONFIG_START( fungames, fungames_state )
+static MACHINE_CONFIG_START( fungames )
/* basic machine hardware */
MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK)
@@ -134,5 +134,5 @@ ROM_START( take5 )
ROM_END
-GAME( 1976, biplane4, 0, fungames, 0, driver_device, 0, ROT0, "Fun Games", "Biplane 4 [TTL]", MACHINE_IS_SKELETON )
-GAME( 1975, take5, 0, fungames, 0, driver_device, 0, ROT0, "Fun Games", "Take 5 [TTL]", MACHINE_IS_SKELETON )
+GAME( 1976, biplane4, 0, fungames, 0, fungames_state, 0, ROT0, "Fun Games", "Biplane 4 [TTL]", MACHINE_IS_SKELETON )
+GAME( 1975, take5, 0, fungames, 0, fungames_state, 0, ROT0, "Fun Games", "Take 5 [TTL]", MACHINE_IS_SKELETON )