diff options
Diffstat (limited to 'src/mame/drivers/ec65.cpp')
-rw-r--r-- | src/mame/drivers/ec65.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ec65.cpp b/src/mame/drivers/ec65.cpp index 8d458b174b7..da546879db1 100644 --- a/src/mame/drivers/ec65.cpp +++ b/src/mame/drivers/ec65.cpp @@ -29,7 +29,7 @@ class ec65_state : public driver_device { public: - ec65_state(const machine_config &mconfig, device_type type, const char *tag) + ec65_state(const machine_config &mconfig, device_type type, std::string tag) : driver_device(mconfig, type, tag), m_via_0(*this, VIA6522_0_TAG), m_via_1(*this, VIA6522_1_TAG), @@ -54,7 +54,7 @@ public: class ec65k_state : public driver_device { public: - ec65k_state(const machine_config &mconfig, device_type type, const char *tag) + ec65k_state(const machine_config &mconfig, device_type type, std::string tag) : driver_device(mconfig, type, tag) { } |