summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/at.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/at.h')
-rw-r--r--src/mame/includes/at.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/at.h b/src/mame/includes/at.h
index 7d1d8e84d4b..34d213537d4 100644
--- a/src/mame/includes/at.h
+++ b/src/mame/includes/at.h
@@ -50,7 +50,7 @@
class at586_state : public driver_device
{
public:
- at586_state(const machine_config &mconfig, device_type type, const char *tag)
+ at586_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
required_device<cpu_device> m_maincpu;
@@ -61,7 +61,7 @@ public:
class at_state : public driver_device
{
public:
- at_state(const machine_config &mconfig, device_type type, const char *tag)
+ at_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_pic8259_master(*this, "pic8259_master"),
@@ -170,7 +170,7 @@ public:
class megapc_state : public driver_device
{
public:
- megapc_state(const machine_config &mconfig, device_type type, const char *tag)
+ megapc_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_wd7600(*this, "wd7600"),