summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/pcfx.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-10 08:08:19 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-10 08:08:19 +0000
commitd68164b4c1216ac23354ac3a4634048c2c0e998a (patch)
tree39687bf5baf731642d0479262ffde5811980683c /src/mess/drivers/pcfx.c
parentb8f2bac8dd48cce0f8e07fc20c63e05a8aac476d (diff)
unified formating of state class constructors, no functional change (nw)
Diffstat (limited to 'src/mess/drivers/pcfx.c')
-rw-r--r--src/mess/drivers/pcfx.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mess/drivers/pcfx.c b/src/mess/drivers/pcfx.c
index f1b59bf959f..9c232e09aa1 100644
--- a/src/mess/drivers/pcfx.c
+++ b/src/mess/drivers/pcfx.c
@@ -24,10 +24,9 @@ class pcfx_state : public driver_device
{
public:
pcfx_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag)
- , m_maincpu(*this, "maincpu")
- , m_huc6261(*this, "huc6261")
- { }
+ : driver_device(mconfig, type, tag),
+ m_maincpu(*this, "maincpu"),
+ m_huc6261(*this, "huc6261") { }
required_device<cpu_device> m_maincpu;
required_device<huc6261_device> m_huc6261;