summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/wpc_pin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/wpc_pin.h')
-rw-r--r--src/mame/includes/wpc_pin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/wpc_pin.h b/src/mame/includes/wpc_pin.h
index f4002879e96..27cf5cfc588 100644
--- a/src/mame/includes/wpc_pin.h
+++ b/src/mame/includes/wpc_pin.h
@@ -20,7 +20,7 @@
class wpc_dot_state : public driver_device
{
public:
- wpc_dot_state(const machine_config &mconfig, device_type type, std::string tag)
+ wpc_dot_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_wpcsnd(*this,"wpcsnd"),
@@ -84,7 +84,7 @@ private:
class wpc_flip1_state : public wpc_dot_state
{
public:
- wpc_flip1_state(const machine_config &mconfig, device_type type, std::string tag)
+ wpc_flip1_state(const machine_config &mconfig, device_type type, const char *tag)
: wpc_dot_state(mconfig, type, tag)
{ }
public:
@@ -95,7 +95,7 @@ public:
class wpc_flip2_state : public wpc_flip1_state
{
public:
- wpc_flip2_state(const machine_config &mconfig, device_type type, std::string tag)
+ wpc_flip2_state(const machine_config &mconfig, device_type type, const char *tag)
: wpc_flip1_state(mconfig, type, tag)
{ }
public:
@@ -105,7 +105,7 @@ public:
class wpc_dcs_state : public wpc_flip2_state
{
public:
- wpc_dcs_state(const machine_config &mconfig, device_type type, std::string tag)
+ wpc_dcs_state(const machine_config &mconfig, device_type type, const char *tag)
: wpc_flip2_state(mconfig, type, tag),
m_dcs(*this, "dcs")
{ }