diff options
author | 2016-01-16 12:24:11 +0100 | |
---|---|---|
committer | 2016-01-16 14:54:42 +0100 | |
commit | 1f90ceab075c4869298e963bf0a14a0aac2f1caa (patch) | |
tree | 49984b30e3c6da6a0be068dbfcd02882bdafdc08 /src/devices/sound/2610intf.h | |
parent | 34161178c431b018cba0d0286951c69aee80e968 (diff) |
tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/sound/2610intf.h')
-rw-r--r-- | src/devices/sound/2610intf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/2610intf.h b/src/devices/sound/2610intf.h index c4409e46f21..cb7b1acbbc0 100644 --- a/src/devices/sound/2610intf.h +++ b/src/devices/sound/2610intf.h @@ -16,8 +16,8 @@ void ym2610_update_request(void *param); class ym2610_device : public ay8910_device { public: - ym2610_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - ym2610_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); + ym2610_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + ym2610_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); // static configuration helpers template<class _Object> static devcb_base &set_irq_handler(device_t &device, _Object object) { return downcast<ym2610_device &>(device).m_irq_handler.set_callback(object); } @@ -54,7 +54,7 @@ extern const device_type YM2610; class ym2610b_device : public ym2610_device { public: - ym2610b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + ym2610b_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); virtual void stream_generate(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; }; |