summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/fmtowns.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/fmtowns.h')
-rw-r--r--src/mame/includes/fmtowns.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/fmtowns.h b/src/mame/includes/fmtowns.h
index 1989b2ea3a9..f3ad5a0d9d5 100644
--- a/src/mame/includes/fmtowns.h
+++ b/src/mame/includes/fmtowns.h
@@ -78,7 +78,7 @@ struct towns_video_controller
class towns_state : public driver_device
{
public:
- towns_state(const machine_config &mconfig, device_type type, const char *tag)
+ towns_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_speaker(*this, "speaker"),
@@ -363,7 +363,7 @@ public:
class towns16_state : public towns_state
{
public:
- towns16_state(const machine_config &mconfig, device_type type, const char *tag)
+ towns16_state(const machine_config &mconfig, device_type type, std::string tag)
: towns_state(mconfig, type, tag)
{ }
};
@@ -371,7 +371,7 @@ class towns16_state : public towns_state
class marty_state : public towns_state
{
public:
- marty_state(const machine_config &mconfig, device_type type, const char *tag)
+ marty_state(const machine_config &mconfig, device_type type, std::string tag)
: towns_state(mconfig, type, tag)
{ }