diff options
Diffstat (limited to 'src/mame/includes/kc.h')
-rw-r--r-- | src/mame/includes/kc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/kc.h b/src/mame/includes/kc.h index 69d400e609b..65af7aeedb7 100644 --- a/src/mame/includes/kc.h +++ b/src/mame/includes/kc.h @@ -57,7 +57,7 @@ class kc_state : public driver_device { public: - kc_state(const machine_config &mconfig, device_type type, std::string tag) + kc_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_z80pio(*this, "z80pio"), @@ -158,7 +158,7 @@ public: class kc85_4_state : public kc_state { public: - kc85_4_state(const machine_config &mconfig, device_type type, std::string tag) + kc85_4_state(const machine_config &mconfig, device_type type, const char *tag) : kc_state(mconfig, type, tag) { } |