summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/psx/sio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/psx/sio.h')
-rw-r--r--src/devices/cpu/psx/sio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/psx/sio.h b/src/devices/cpu/psx/sio.h
index 93d8428bc9e..04c578a50c6 100644
--- a/src/devices/cpu/psx/sio.h
+++ b/src/devices/cpu/psx/sio.h
@@ -52,7 +52,7 @@ extern const device_type PSX_SIO1;
class psxsio_device : public device_t
{
public:
- psxsio_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);
+ psxsio_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);
// static configuration helpers
template<class _Object> static devcb_base &set_irq_handler(device_t &device, _Object object) { return downcast<psxsio_device &>(device).m_irq_handler.set_callback(object); }
@@ -101,13 +101,13 @@ private:
class psxsio0_device : public psxsio_device
{
public:
- psxsio0_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ psxsio0_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
class psxsio1_device : public psxsio_device
{
public:
- psxsio1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ psxsio1_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
#endif