summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/seibu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/seibu.h')
-rw-r--r--src/mame/audio/seibu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/seibu.h b/src/mame/audio/seibu.h
index 8efbbb3f04c..732ab5af314 100644
--- a/src/mame/audio/seibu.h
+++ b/src/mame/audio/seibu.h
@@ -43,7 +43,7 @@ ADDRESS_MAP_EXTERN(seibu3_adpcm_sound_map, 8);
class seibu_sound_device : public device_t
{
public:
- seibu_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ seibu_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~seibu_sound_device() {}
DECLARE_READ16_MEMBER( main_word_r );
@@ -102,10 +102,10 @@ class seibu_adpcm_device : public device_t,
public device_sound_interface
{
public:
- seibu_adpcm_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ seibu_adpcm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~seibu_adpcm_device() {}
- static void set_adpcm_rom_tag(device_t &device, std::string tag) { downcast<seibu_adpcm_device &>(device).m_rom_tag = tag; }
+ static void set_adpcm_rom_tag(device_t &device, const char *tag) { downcast<seibu_adpcm_device &>(device).m_rom_tag = tag; }
void decrypt(const char *region);
DECLARE_WRITE8_MEMBER( adr_w );
@@ -126,7 +126,7 @@ protected:
UINT32 m_end;
UINT8 m_nibble;
UINT8 m_playing;
- std::string m_rom_tag;
+ const char *m_rom_tag;
UINT8 *m_base;
};