diff options
Diffstat (limited to 'src/mame/etc/template_driver.cpp')
-rw-r--r-- | src/mame/etc/template_driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/etc/template_driver.cpp b/src/mame/etc/template_driver.cpp index c233db1b6ba..0055b554c7f 100644 --- a/src/mame/etc/template_driver.cpp +++ b/src/mame/etc/template_driver.cpp @@ -16,7 +16,7 @@ Template for skeleton drivers class xxx_state : public driver_device { public: - xxx_state(const machine_config &mconfig, device_type type, const char *tag) + xxx_state(const machine_config &mconfig, device_type type, std::string tag) : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu") { } |