summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tx1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tx1.h')
-rw-r--r--src/mame/includes/tx1.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/tx1.h b/src/mame/includes/tx1.h
index 68f9a37739d..e4b6c70c96c 100644
--- a/src/mame/includes/tx1.h
+++ b/src/mame/includes/tx1.h
@@ -99,7 +99,7 @@ struct vregs_t
class tx1_state : public driver_device
{
public:
- tx1_state(const machine_config &mconfig, device_type type, const char *tag)
+ tx1_state(const machine_config &mconfig, device_type type, std::string tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "main_cpu"),
m_mathcpu(*this, "math_cpu"),
@@ -255,8 +255,8 @@ class tx1_sound_device : public device_t,
public device_sound_interface
{
public:
- tx1_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- tx1_sound_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ tx1_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ tx1_sound_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
~tx1_sound_device() {}
DECLARE_READ8_MEMBER( pit8253_r );
@@ -312,7 +312,7 @@ extern const device_type TX1;
class buggyboy_sound_device : public tx1_sound_device
{
public:
- buggyboy_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ buggyboy_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
DECLARE_WRITE8_MEMBER( ym1_a_w );
DECLARE_WRITE8_MEMBER( ym2_a_w );