summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/mea8000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/mea8000.h')
-rw-r--r--src/mame/audio/mea8000.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/mea8000.h b/src/mame/audio/mea8000.h
index fcda2267a80..aa42db156c3 100644
--- a/src/mame/audio/mea8000.h
+++ b/src/mame/audio/mea8000.h
@@ -57,10 +57,10 @@ struct filter_t
class mea8000_device : public device_t
{
public:
- mea8000_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ mea8000_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
~mea8000_device() {}
- static void static_set_dac_tag(device_t &device, const char *tag) { downcast<mea8000_device &>(device).m_dac.set_tag(tag); }
+ static void static_set_dac_tag(device_t &device, std::string tag) { downcast<mea8000_device &>(device).m_dac.set_tag(tag); }
template<class _Object> static devcb_base &set_req_wr_callback(device_t &device, _Object object) { return downcast<mea8000_device &>(device).m_write_req.set_callback(object); }
DECLARE_READ8_MEMBER(read);