diff options
Diffstat (limited to 'src/devices/sound/namco.h')
-rw-r--r-- | src/devices/sound/namco.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/namco.h b/src/devices/sound/namco.h index 27cd8d85fef..e79484e4f4a 100644 --- a/src/devices/sound/namco.h +++ b/src/devices/sound/namco.h @@ -36,7 +36,7 @@ class namco_audio_device : public device_t, public device_sound_interface { public: - namco_audio_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); + namco_audio_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); ~namco_audio_device() {} // static configuration @@ -79,7 +79,7 @@ protected: class namco_device : public namco_audio_device { public: - namco_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + namco_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); DECLARE_WRITE8_MEMBER( pacman_sound_enable_w ); DECLARE_WRITE8_MEMBER( pacman_sound_w ); @@ -98,7 +98,7 @@ extern const device_type NAMCO; class namco_15xx_device : public namco_audio_device { public: - namco_15xx_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + namco_15xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); DECLARE_WRITE8_MEMBER( namco_15xx_w ); DECLARE_READ8_MEMBER( sharedram_r ); @@ -115,7 +115,7 @@ extern const device_type NAMCO_15XX; class namco_cus30_device : public namco_audio_device { public: - namco_cus30_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + namco_cus30_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); DECLARE_WRITE8_MEMBER( namcos1_cus30_w ); /* wavedata + sound registers + RAM */ DECLARE_READ8_MEMBER( namcos1_cus30_r ); |