summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bfm_sc45.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bfm_sc45.h')
-rw-r--r--src/mame/includes/bfm_sc45.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/bfm_sc45.h b/src/mame/includes/bfm_sc45.h
index 5844cdc9a1b..cd4bf707f74 100644
--- a/src/mame/includes/bfm_sc45.h
+++ b/src/mame/includes/bfm_sc45.h
@@ -63,7 +63,7 @@
class bfm_sc45_state : public driver_device
{
public:
- bfm_sc45_state(const machine_config &mconfig, device_type type, const char *tag)
+ bfm_sc45_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_duart(*this, "duart68681"),
m_vfd0(*this, "vfd0"),
@@ -98,7 +98,7 @@ void bfm_sc45_write_serial_vfd(running_machine &machine, bool cs, bool clock, bo
class sc4_state : public bfm_sc45_state
{
public:
- sc4_state(const machine_config &mconfig, device_type type, const char *tag)
+ sc4_state(const machine_config &mconfig, device_type type, std::string tag)
: bfm_sc45_state(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_cpuregion(*this, "maincpu"),
@@ -623,7 +623,7 @@ protected:
class sc4_adder4_state : public sc4_state
{
public:
- sc4_adder4_state(const machine_config &mconfig, device_type type, const char *tag)
+ sc4_adder4_state(const machine_config &mconfig, device_type type, std::string tag)
: sc4_state(mconfig, type, tag),
m_adder4cpu(*this, "adder4")
{ }