summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sms.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sms.h')
-rw-r--r--src/mame/includes/sms.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/sms.h b/src/mame/includes/sms.h
index ec9ae688698..e25e243515b 100644
--- a/src/mame/includes/sms.h
+++ b/src/mame/includes/sms.h
@@ -30,7 +30,7 @@
class sms_state : public driver_device
{
public:
- sms_state(const machine_config &mconfig, device_type type, const char *tag)
+ sms_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_vdp(*this, "sms_vdp"),
@@ -220,7 +220,7 @@ protected:
class smssdisp_state : public sms_state
{
public:
- smssdisp_state(const machine_config &mconfig, device_type type, const char *tag)
+ smssdisp_state(const machine_config &mconfig, device_type type, std::string tag)
: sms_state(mconfig, type, tag),
m_control_cpu(*this, "control")
{ }