summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/goldstar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/goldstar.h')
-rw-r--r--src/mame/includes/goldstar.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/goldstar.h b/src/mame/includes/goldstar.h
index 2eb7e47df05..29ac9699d87 100644
--- a/src/mame/includes/goldstar.h
+++ b/src/mame/includes/goldstar.h
@@ -8,7 +8,7 @@
class goldstar_state : public driver_device
{
public:
- goldstar_state(const machine_config &mconfig, device_type type, const char *tag) :
+ goldstar_state(const machine_config &mconfig, device_type type, std::string tag) :
driver_device(mconfig, type, tag),
m_fg_vidram(*this, "fg_vidram"),
m_fg_atrram(*this, "fg_atrram"),
@@ -96,7 +96,7 @@ protected:
class cmaster_state : public goldstar_state
{
public:
- cmaster_state(const machine_config &mconfig, device_type type, const char *tag) :
+ cmaster_state(const machine_config &mconfig, device_type type, std::string tag) :
goldstar_state(mconfig, type, tag)
{
}
@@ -152,7 +152,7 @@ protected:
class wingco_state : public goldstar_state
{
public:
- wingco_state(const machine_config &mconfig, device_type type, const char *tag) :
+ wingco_state(const machine_config &mconfig, device_type type, std::string tag) :
goldstar_state(mconfig, type, tag)
{
}
@@ -188,7 +188,7 @@ private:
class cb3_state : public goldstar_state
{
public:
- cb3_state(const machine_config &mconfig, device_type type, const char *tag) :
+ cb3_state(const machine_config &mconfig, device_type type, std::string tag) :
goldstar_state(mconfig, type, tag)
{
}
@@ -211,7 +211,7 @@ protected:
class sanghopm_state : public goldstar_state
{
public:
- sanghopm_state(const machine_config &mconfig, device_type type, const char *tag) :
+ sanghopm_state(const machine_config &mconfig, device_type type, std::string tag) :
goldstar_state(mconfig, type, tag),
m_reel1_attrram(*this, "reel1_attrram"),
m_reel2_attrram(*this, "reel2_attrram"),
@@ -252,7 +252,7 @@ private:
class unkch_state : public goldstar_state
{
public:
- unkch_state(const machine_config &mconfig, device_type type, const char *tag) :
+ unkch_state(const machine_config &mconfig, device_type type, std::string tag) :
goldstar_state(mconfig, type, tag),
m_reel1_attrram(*this, "reel1_attrram"),
m_reel2_attrram(*this, "reel2_attrram"),