diff options
author | 2016-01-20 21:42:13 +0100 | |
---|---|---|
committer | 2016-01-20 21:42:13 +0100 | |
commit | 4e8e3066f847cc0fa11539f4d9ab8a63f70ca475 (patch) | |
tree | 25d48b50f2b89dd5b9e7dbbfeeb85c534ec6852a /src/devices/sound/2612intf.h | |
parent | 3a8ccb89b426509be06089a19c51ecf55567ed1b (diff) |
reverting:
SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa
* tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/sound/2612intf.h')
-rw-r--r-- | src/devices/sound/2612intf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/2612intf.h b/src/devices/sound/2612intf.h index cb18940637f..0dc25ac5b25 100644 --- a/src/devices/sound/2612intf.h +++ b/src/devices/sound/2612intf.h @@ -16,8 +16,8 @@ class ym2612_device : public device_t, public device_sound_interface { public: - ym2612_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - ym2612_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); + ym2612_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + ym2612_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); // static configuration helpers template<class _Object> static devcb_base &set_irq_handler(device_t &device, _Object object) { return downcast<ym2612_device &>(device).m_irq_handler.set_callback(object); } @@ -55,7 +55,7 @@ extern const device_type YM2612; class ym3438_device : public ym2612_device { public: - ym3438_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + ym3438_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); }; extern const device_type YM3438; |