summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pet.h')
-rw-r--r--src/mame/includes/pet.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/pet.h b/src/mame/includes/pet.h
index 2324b149b85..d4572a99c05 100644
--- a/src/mame/includes/pet.h
+++ b/src/mame/includes/pet.h
@@ -36,7 +36,7 @@
class pet_state : public driver_device
{
public:
- pet_state(const machine_config &mconfig, device_type type, std::string tag) :
+ pet_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_maincpu(*this, M6502_TAG),
m_via(*this, M6522_TAG),
@@ -201,7 +201,7 @@ public:
class pet2001b_state : public pet_state
{
public:
- pet2001b_state(const machine_config &mconfig, device_type type, std::string tag) :
+ pet2001b_state(const machine_config &mconfig, device_type type, const char *tag) :
pet_state(mconfig, type, tag)
{ }
@@ -212,7 +212,7 @@ public:
class pet80_state : public pet2001b_state
{
public:
- pet80_state(const machine_config &mconfig, device_type type, std::string tag) :
+ pet80_state(const machine_config &mconfig, device_type type, const char *tag) :
pet2001b_state(mconfig, type, tag)
{ }
@@ -227,7 +227,7 @@ public:
class superpet_state : public pet80_state
{
public:
- superpet_state(const machine_config &mconfig, device_type type, std::string tag)
+ superpet_state(const machine_config &mconfig, device_type type, const char *tag)
: pet80_state(mconfig, type, tag)
{ }
};
@@ -236,7 +236,7 @@ public:
class cbm8096_state : public pet80_state
{
public:
- cbm8096_state(const machine_config &mconfig, device_type type, std::string tag) :
+ cbm8096_state(const machine_config &mconfig, device_type type, const char *tag) :
pet80_state(mconfig, type, tag)
{ }
};
@@ -245,7 +245,7 @@ public:
class cbm8296_state : public pet80_state
{
public:
- cbm8296_state(const machine_config &mconfig, device_type type, std::string tag) :
+ cbm8296_state(const machine_config &mconfig, device_type type, const char *tag) :
pet80_state(mconfig, type, tag),
m_basic_rom(*this, "basic"),
m_editor_rom(*this, "editor"),