summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/segasnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/segasnd.h')
-rw-r--r--src/mame/audio/segasnd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/segasnd.h b/src/mame/audio/segasnd.h
index 6814d77e6fb..8436d8427e7 100644
--- a/src/mame/audio/segasnd.h
+++ b/src/mame/audio/segasnd.h
@@ -12,7 +12,7 @@ class speech_sound_device : public device_t,
public device_sound_interface
{
public:
- speech_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ speech_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~speech_sound_device() {}
DECLARE_WRITE8_MEMBER( data_w );
@@ -115,8 +115,8 @@ class usb_sound_device : public device_t,
public device_sound_interface
{
public:
- usb_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);
- usb_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ usb_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);
+ usb_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~usb_sound_device() {}
required_device<i8035_device> m_ourcpu; /* CPU index of the 8035 */
@@ -176,7 +176,7 @@ extern const device_type SEGAUSB;
class usb_rom_sound_device : public usb_sound_device
{
public:
- usb_rom_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ usb_rom_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~usb_rom_sound_device() {}
protected: