summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mt735.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mt735.cpp')
-rw-r--r--src/mame/drivers/mt735.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mt735.cpp b/src/mame/drivers/mt735.cpp
index 4e642a4fa31..45fb5798920 100644
--- a/src/mame/drivers/mt735.cpp
+++ b/src/mame/drivers/mt735.cpp
@@ -9,7 +9,7 @@
class mt735_state : public driver_device
{
public:
- mt735_state(const machine_config &mconfig, device_type type, const char *tag);
+ mt735_state(const machine_config &mconfig, device_type type, std::string tag);
required_device<m68000_device> m_cpu;
@@ -20,7 +20,7 @@ public:
virtual void machine_reset() override;
};
-mt735_state::mt735_state(const machine_config &mconfig, device_type type, const char *tag) :
+mt735_state::mt735_state(const machine_config &mconfig, device_type type, std::string tag) :
driver_device(mconfig, type, tag),
m_cpu(*this, "maincpu")
{