summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2018-04-06 17:42:42 +0200
committer hap <happppp@users.noreply.github.com>2018-04-06 17:43:12 +0200
commitb4d0afcad90f0e6c505e133e2b775a3f3642cd6c (patch)
tree3cb508f3044611811af605db11da1973fb4db258
parentd15bad89f2511ac3eb4abc506c319ec24e3afaf6 (diff)
unmix commas style (nw)
-rw-r--r--src/mame/includes/cosmicos.h30
-rw-r--r--src/mame/includes/newbrain.h6
2 files changed, 18 insertions, 18 deletions
diff --git a/src/mame/includes/cosmicos.h b/src/mame/includes/cosmicos.h
index eab984c12e6..4313534fcc8 100644
--- a/src/mame/includes/cosmicos.h
+++ b/src/mame/includes/cosmicos.h
@@ -41,21 +41,21 @@ enum
class cosmicos_state : public driver_device
{
public:
- cosmicos_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, CDP1802_TAG),
- m_cti(*this, CDP1864_TAG),
- m_led(*this, DM9368_TAG),
- m_cassette(*this, "cassette"),
- m_speaker(*this, "speaker"),
- m_ram(*this, RAM_TAG),
- m_rom(*this, CDP1802_TAG),
- m_key_row(*this, {"Y1", "Y2", "Y3", "Y4"}),
- m_io_data(*this, "DATA"),
- m_special(*this, "SPECIAL"),
- m_buttons(*this, "BUTTONS")
- , m_digits(*this, "digit%u", 0U)
- , m_leds(*this, "led%u", 0U)
+ cosmicos_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
+ m_maincpu(*this, CDP1802_TAG),
+ m_cti(*this, CDP1864_TAG),
+ m_led(*this, DM9368_TAG),
+ m_cassette(*this, "cassette"),
+ m_speaker(*this, "speaker"),
+ m_ram(*this, RAM_TAG),
+ m_rom(*this, CDP1802_TAG),
+ m_key_row(*this, {"Y1", "Y2", "Y3", "Y4"}),
+ m_io_data(*this, "DATA"),
+ m_special(*this, "SPECIAL"),
+ m_buttons(*this, "BUTTONS"),
+ m_digits(*this, "digit%u", 0U),
+ m_leds(*this, "led%u", 0U)
{ }
DECLARE_READ8_MEMBER( read );
diff --git a/src/mame/includes/newbrain.h b/src/mame/includes/newbrain.h
index b57b3f149e1..855172f266d 100644
--- a/src/mame/includes/newbrain.h
+++ b/src/mame/includes/newbrain.h
@@ -39,9 +39,9 @@ public:
m_ram(*this, RAM_TAG),
m_rom(*this, Z80_TAG),
m_char_rom(*this, "chargen"),
- m_y(*this, "Y%u", 0)
- , m_digits(*this, "digit%u", 0U)
- , m_pwrup(0),
+ m_y(*this, "Y%u", 0),
+ m_digits(*this, "digit%u", 0U),
+ m_pwrup(0),
m_userint(1),
m_clkint(1),
m_copint(1),