summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/osi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/osi.h')
-rw-r--r--src/mame/includes/osi.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/osi.h b/src/mame/includes/osi.h
index bac2769faa7..43485a7a5f4 100644
--- a/src/mame/includes/osi.h
+++ b/src/mame/includes/osi.h
@@ -30,7 +30,7 @@
class sb2m600_state : public driver_device
{
public:
- sb2m600_state(const machine_config &mconfig, device_type type, std::string tag) :
+ sb2m600_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_maincpu(*this, M6502_TAG),
m_acia_0(*this, "acia_0"),
@@ -108,7 +108,7 @@ protected:
class c1p_state : public sb2m600_state
{
public:
- c1p_state(const machine_config &mconfig, device_type type, std::string tag) :
+ c1p_state(const machine_config &mconfig, device_type type, const char *tag) :
sb2m600_state(mconfig, type, tag),
m_beep(*this, "beeper")
{
@@ -126,7 +126,7 @@ public:
class c1pmf_state : public c1p_state
{
public:
- c1pmf_state(const machine_config &mconfig, device_type type, std::string tag) :
+ c1pmf_state(const machine_config &mconfig, device_type type, const char *tag) :
c1p_state(mconfig, type, tag),
m_floppy0(*this, "floppy0"),
m_floppy1(*this, "floppy1")
@@ -148,7 +148,7 @@ private:
class uk101_state : public sb2m600_state
{
public:
- uk101_state(const machine_config &mconfig, device_type type, std::string tag) :
+ uk101_state(const machine_config &mconfig, device_type type, const char *tag) :
sb2m600_state(mconfig, type, tag)
{
}