diff options
Diffstat (limited to 'src/devices/sound/wave.cpp')
-rw-r--r-- | src/devices/sound/wave.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/wave.cpp b/src/devices/sound/wave.cpp index 650389b332e..dc2285eaaef 100644 --- a/src/devices/sound/wave.cpp +++ b/src/devices/sound/wave.cpp @@ -30,7 +30,7 @@ void wave_device::static_set_cassette_tag(device_t &device, const char *cassette const device_type WAVE = &device_creator<wave_device>; -wave_device::wave_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +wave_device::wave_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) : device_t(mconfig, WAVE, "Wave", tag, owner, clock, "wave", __FILE__), device_sound_interface(mconfig, *this), m_cass(nullptr) { |