summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pgmprot_igs025_igs012.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pgmprot_igs025_igs012.cpp')
-rw-r--r--src/mame/machine/pgmprot_igs025_igs012.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mame/machine/pgmprot_igs025_igs012.cpp b/src/mame/machine/pgmprot_igs025_igs012.cpp
index 617b6c70f11..d598e3e6ca1 100644
--- a/src/mame/machine/pgmprot_igs025_igs012.cpp
+++ b/src/mame/machine/pgmprot_igs025_igs012.cpp
@@ -106,11 +106,9 @@ static const uint8_t drgw2_source_data[0x08][0xec] =
{ 0, } // Region 7, not used
};
-MACHINE_RESET_MEMBER(pgm_012_025_state,drgw2)
+void pgm_012_025_state::machine_reset_drgw2()
{
- MACHINE_RESET_CALL_MEMBER(pgm);
-
-
+ machine_reset_pgm();
}
void pgm_012_025_state::drgw2_common_init()
@@ -142,7 +140,7 @@ MACHINE_CONFIG_START(pgm_012_025_state::pgm_012_025_drgw2)
MCFG_DEVICE_ADD("igs025", IGS025, 0)
//MCFG_IGS025_SET_EXTERNAL_EXECUTE( pgm_022_025_state, igs025_to_igs012_callback )
- MCFG_MACHINE_RESET_OVERRIDE(pgm_012_025_state,drgw2)
+ set_machine_reset_cb(config, driver_callback_delegate(&machine_reset_drgw2, this));
MACHINE_CONFIG_END