diff options
author | 2020-06-29 23:17:24 +0200 | |
---|---|---|
committer | 2020-06-29 23:17:24 +0200 | |
commit | ed39da783d416c2ff776935a5dec9dd5bb3606ce (patch) | |
tree | 7e0b239640132cf5fe122c339516112ed5af88bb /src/mame/drivers/gimix.cpp | |
parent | 1b3322edc39ee2f0d9f8f233f7887c3f1d9501a6 (diff) |
various devices and drivers: removed superfluous semicolons (nw)
Diffstat (limited to 'src/mame/drivers/gimix.cpp')
-rw-r--r-- | src/mame/drivers/gimix.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/gimix.cpp b/src/mame/drivers/gimix.cpp index 036afa4eae7..36aa5033d23 100644 --- a/src/mame/drivers/gimix.cpp +++ b/src/mame/drivers/gimix.cpp @@ -755,10 +755,10 @@ void gimix_state::gimix(machine_config &config) m_fdc->intrq_wr_callback().set(FUNC(gimix_state::fdc_irq_w)); m_fdc->drq_wr_callback().set(FUNC(gimix_state::fdc_drq_w)); m_fdc->set_force_ready(true); - FLOPPY_CONNECTOR(config, "fdc:0", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true);; - FLOPPY_CONNECTOR(config, "fdc:1", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true);; - FLOPPY_CONNECTOR(config, "fdc:2", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true);; - FLOPPY_CONNECTOR(config, "fdc:3", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true);; + FLOPPY_CONNECTOR(config, "fdc:0", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, "fdc:1", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, "fdc:2", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true); + FLOPPY_CONNECTOR(config, "fdc:3", gimix_floppies, "525hd", gimix_state::floppy_formats).enable_sound(true); /* parallel ports */ pia6821_device &pia1(PIA6821(config, "pia1", 2'000'000)); |