summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/trs80m2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/trs80m2.h')
-rw-r--r--src/mame/includes/trs80m2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/trs80m2.h b/src/mame/includes/trs80m2.h
index 1bfbbc82047..305fd2bab49 100644
--- a/src/mame/includes/trs80m2.h
+++ b/src/mame/includes/trs80m2.h
@@ -38,7 +38,7 @@
class trs80m2_state : public driver_device
{
public:
- trs80m2_state(const machine_config &mconfig, device_type type, std::string tag)
+ trs80m2_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, Z80_TAG),
m_ctc(*this, Z80CTC_TAG),
@@ -142,7 +142,7 @@ public:
class trs80m16_state : public trs80m2_state
{
public:
- trs80m16_state(const machine_config &mconfig, device_type type, std::string tag)
+ trs80m16_state(const machine_config &mconfig, device_type type, const char *tag)
: trs80m2_state(mconfig, type, tag),
m_subcpu(*this, M68000_TAG),
m_pic(*this, AM9519A_TAG)