summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namcoio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/namcoio.h')
-rw-r--r--src/mame/machine/namcoio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/namcoio.h b/src/mame/machine/namcoio.h
index b28b2a9117d..db18a9eb976 100644
--- a/src/mame/machine/namcoio.h
+++ b/src/mame/machine/namcoio.h
@@ -11,7 +11,7 @@
class namcoio_device : public device_t
{
public:
- namcoio_device(const machine_config &mconfig, device_type type, const char* name, const char *tag, device_t *owner, UINT32 clock, const char *shortname);
+ namcoio_device(const machine_config &mconfig, device_type type, const char* name, std::string tag, device_t *owner, UINT32 clock, const char *shortname);
template<class _Object> static devcb_base &set_in_0_callback(device_t &device, _Object object) { return downcast<namcoio_device &>(device).m_in_0_cb.set_callback(object); }
template<class _Object> static devcb_base &set_in_1_callback(device_t &device, _Object object) { return downcast<namcoio_device &>(device).m_in_1_cb.set_callback(object); }
@@ -69,7 +69,7 @@ private:
class namco56xx_device : public namcoio_device
{
public:
- namco56xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ namco56xx_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
virtual void customio_run() override;
};
@@ -77,7 +77,7 @@ public:
class namco58xx_device : public namcoio_device
{
public:
- namco58xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ namco58xx_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
virtual void customio_run() override;
};
@@ -85,7 +85,7 @@ public:
class namco59xx_device : public namcoio_device
{
public:
- namco59xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ namco59xx_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
virtual void customio_run() override;
};