summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/igs_fear.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/igs_fear.cpp')
-rw-r--r--src/mame/drivers/igs_fear.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/igs_fear.cpp b/src/mame/drivers/igs_fear.cpp
index 9eda32e95a8..49fbb8d263b 100644
--- a/src/mame/drivers/igs_fear.cpp
+++ b/src/mame/drivers/igs_fear.cpp
@@ -79,8 +79,8 @@ WRITE_LINE_MEMBER(igs_fear_state::sound_irq)
MACHINE_CONFIG_START(igs_fear_state::igs_fear)
- MCFG_CPU_ADD("maincpu",ARM7, 50000000/2)
- MCFG_CPU_PROGRAM_MAP(igs_igs_fear_map)
+ MCFG_DEVICE_ADD("maincpu",ARM7, 50000000/2)
+ MCFG_DEVICE_PROGRAM_MAP(igs_igs_fear_map)
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_REFRESH_RATE(60)
@@ -99,7 +99,7 @@ MACHINE_CONFIG_START(igs_fear_state::igs_fear)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_ICS2115_ADD("ics", 0)
- MCFG_ICS2115_IRQ_CB(WRITELINE(igs_fear_state, sound_irq))
+ MCFG_ICS2115_IRQ_CB(WRITELINE(*this, igs_fear_state, sound_irq))
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 5.0)
MACHINE_CONFIG_END