From eb110e8b30390f21f6aae2f352839b94e783d7a4 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 15 Nov 2022 14:12:21 -0500 Subject: [PATCH] Semicolon surgery --- src/devices/bus/bbc/userport/sdcard.h | 2 +- src/mame/barcrest/mpu3.cpp | 2 +- src/mame/pinball/stargame.cpp | 2 +- src/mame/quantel/dpb7000.cpp | 2 +- src/mame/sinclair/atm.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/devices/bus/bbc/userport/sdcard.h b/src/devices/bus/bbc/userport/sdcard.h index bfa86ad359b..0bab3d85e21 100644 --- a/src/devices/bus/bbc/userport/sdcard.h +++ b/src/devices/bus/bbc/userport/sdcard.h @@ -63,7 +63,7 @@ protected: virtual void write_cb2(int state) override; private: - bool m_turbo;; + bool m_turbo; }; diff --git a/src/mame/barcrest/mpu3.cpp b/src/mame/barcrest/mpu3.cpp index b403f8970a8..372afb9bee2 100644 --- a/src/mame/barcrest/mpu3.cpp +++ b/src/mame/barcrest/mpu3.cpp @@ -852,7 +852,7 @@ void mpu3_state::mpu3base(machine_config &config) m_reels[0]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<0>)); REEL(config, m_reels[1], MPU3_48STEP_REEL, 96, 2, 0x00, 2); m_reels[1]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<1>)); - REEL(config, m_reels[2], MPU3_48STEP_REEL, 96, 2, 0x00, 2);; + REEL(config, m_reels[2], MPU3_48STEP_REEL, 96, 2, 0x00, 2); m_reels[2]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<2>)); REEL(config, m_reels[3], MPU3_48STEP_REEL, 96, 2, 0x00, 2); m_reels[3]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<3>)); diff --git a/src/mame/pinball/stargame.cpp b/src/mame/pinball/stargame.cpp index 51d964e65bc..36fcf62f4cb 100644 --- a/src/mame/pinball/stargame.cpp +++ b/src/mame/pinball/stargame.cpp @@ -98,7 +98,7 @@ void stargame_state::maincpu_io(address_map &map) map(0x20, 0x2f).r(FUNC(stargame_state::csw2_r)).w(FUNC(stargame_state::csw2_w)); // CSW2 - input lines (spcship), output lines (whtforce) map(0x30, 0x3f).r(FUNC(stargame_state::csw1_r)); // CSW1 - input lines map(0x40, 0x4f).w(FUNC(stargame_state::cdig_w)); // CDIG - score display - map(0x50, 0x57).mirror(0x08).w(FUNC(stargame_state::cdriv_w));; // CDRIV - lamps and solenoids + map(0x50, 0x57).mirror(0x08).w(FUNC(stargame_state::cdriv_w)); // CDRIV - lamps and solenoids map(0x60, 0x67).mirror(0x08).w("mainlatch", FUNC(ls259_device::write_d0)); // CPOR map(0x68, 0x68).mirror(0x06).w(FUNC(stargame_state::ckdis_w)); // 68=CKDIS (sch has 68 and 69 the wrong way around) map(0x69, 0x69).mirror(0x06); // 69=CKPRI (not used?) diff --git a/src/mame/quantel/dpb7000.cpp b/src/mame/quantel/dpb7000.cpp index 75a788ac4db..d4c3fea0384 100644 --- a/src/mame/quantel/dpb7000.cpp +++ b/src/mame/quantel/dpb7000.cpp @@ -794,7 +794,7 @@ void dpb7000_state::machine_start() save_item(NAME(m_diskseq_cyl_write_pending)); save_item(NAME(m_diskseq_use_hdd_pending)); save_item(NAME(m_diskseq_command_stride)); - m_diskseq_complete_clk = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(dpb7000_state::req_b_w), this));; + m_diskseq_complete_clk = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(dpb7000_state::req_b_w), this)); m_diskseq_complete_clk->adjust(attotime::never); // Floppy Disc Controller Card diff --git a/src/mame/sinclair/atm.cpp b/src/mame/sinclair/atm.cpp index 8ff87a33212..0f4908683c9 100644 --- a/src/mame/sinclair/atm.cpp +++ b/src/mame/sinclair/atm.cpp @@ -510,7 +510,7 @@ void atm_state::atm(machine_config &config) subdevice("gfxdecode")->set_info(gfx_atm); BETA_DISK(config, m_beta, 0); - ATA_INTERFACE(config, m_ata).options(atm_ata_devices, nullptr, nullptr, false);; + ATA_INTERFACE(config, m_ata).options(atm_ata_devices, nullptr, nullptr, false); CENTRONICS(config, m_centronics, centronics_devices, "covox"); output_latch_device ¢_data_out(OUTPUT_LATCH(config, "cent_data_out"));