summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cps2.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-01-29 20:35:11 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-01-29 20:35:11 +0100
commit7f4dc2f670c289da93b300d86ef386d711d44b98 (patch)
tree0c910f10dfe8146fa8aa3006d7a009d99fe901d6 /src/mame/drivers/cps2.cpp
parent01b5c3fb126b695a0b08d00fa0609d9d293b4909 (diff)
src/mame: removed all instances of MCFG_DEVICE_REMOVE in the mame part of the tree (nw)
Diffstat (limited to 'src/mame/drivers/cps2.cpp')
-rw-r--r--src/mame/drivers/cps2.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mame/drivers/cps2.cpp b/src/mame/drivers/cps2.cpp
index 43339646889..09f2683f708 100644
--- a/src/mame/drivers/cps2.cpp
+++ b/src/mame/drivers/cps2.cpp
@@ -1342,11 +1342,9 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(cps2_state::gigaman2)
cps2(config);
- MCFG_DEVICE_REMOVE("audiocpu")
+ config.device_remove("audiocpu");
// gigaman2 has an AT89C4051 (8051) MCU as an audio cpu, no qsound.
- MCFG_DEVICE_REMOVE("qsound")
-
- MCFG_DEVICE_MODIFY("maincpu")
+ config.device_remove("qsound");
MCFG_DEVICE_ADD("oki", OKIM6295, XTAL(32'000'000)/32, okim6295_device::PIN7_HIGH) // clock frequency & pin 7 not verified
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.47)