summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tx1.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-20 21:42:13 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-20 21:42:13 +0100
commit4e8e3066f847cc0fa11539f4d9ab8a63f70ca475 (patch)
tree25d48b50f2b89dd5b9e7dbbfeeb85c534ec6852a /src/mame/includes/tx1.h
parent3a8ccb89b426509be06089a19c51ecf55567ed1b (diff)
reverting:
SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa * tags are now strings (nw) fix start project for custom builds in Visual Studio (nw)
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 e4b6c70c96c..68f9a37739d 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, std::string tag)
+ tx1_state(const machine_config &mconfig, device_type type, const char *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, 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(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() {}
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, std::string tag, device_t *owner, UINT32 clock);
+ buggyboy_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
DECLARE_WRITE8_MEMBER( ym1_a_w );
DECLARE_WRITE8_MEMBER( ym2_a_w );