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/machine/upd7002.h | |
parent | 34161178c431b018cba0d0286951c69aee80e968 (diff) |
tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/machine/upd7002.h')
-rw-r--r-- | src/devices/machine/upd7002.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/upd7002.h b/src/devices/machine/upd7002.h index 0875549f7e8..3824e0e5c6b 100644 --- a/src/devices/machine/upd7002.h +++ b/src/devices/machine/upd7002.h @@ -31,7 +31,7 @@ typedef device_delegate<void (int data)> upd7002_eoc_delegate; class upd7002_device : public device_t { public: - upd7002_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + upd7002_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); ~upd7002_device() {} static void set_get_analogue_callback(device_t &device, upd7002_get_analogue_delegate callback) { downcast<upd7002_device &>(device).m_get_analogue_cb = callback; } |