summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/upscope.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/upscope.cpp')
-rw-r--r--src/mame/drivers/upscope.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/upscope.cpp b/src/mame/drivers/upscope.cpp
index fb7c4dee579..a2a425c3857 100644
--- a/src/mame/drivers/upscope.cpp
+++ b/src/mame/drivers/upscope.cpp
@@ -58,7 +58,7 @@ public:
DECLARE_WRITE8_MEMBER(lamps_w);
DECLARE_WRITE8_MEMBER(coin_counter_w);
- DECLARE_DRIVER_INIT(upscope);
+ void init_upscope();
void upscope(machine_config &config);
void a500_mem(address_map &map);
@@ -362,7 +362,7 @@ ROM_END
*
*************************************/
-DRIVER_INIT_MEMBER(upscope_state, upscope)
+void upscope_state::init_upscope()
{
m_agnus_id = AGNUS_HR_NTSC;
m_denise_id = DENISE;
@@ -379,4 +379,4 @@ DRIVER_INIT_MEMBER(upscope_state, upscope)
*
*************************************/
-GAME( 1986, upscope, 0, upscope, upscope, upscope_state, upscope, ORIENTATION_FLIP_X, "Grand Products", "Up Scope", MACHINE_IMPERFECT_SOUND )
+GAME( 1986, upscope, 0, upscope, upscope, upscope_state, init_upscope, ORIENTATION_FLIP_X, "Grand Products", "Up Scope", MACHINE_IMPERFECT_SOUND )