summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/upd7002.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/upd7002.h')
-rw-r--r--src/devices/machine/upd7002.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/upd7002.h b/src/devices/machine/upd7002.h
index 2a68774d435..5f9e88928c7 100644
--- a/src/devices/machine/upd7002.h
+++ b/src/devices/machine/upd7002.h
@@ -27,8 +27,8 @@ public:
upd7002_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- template <typename... T> void set_get_analogue_callback(T &&... args) { m_get_analogue_cb = get_analogue_delegate(std::forward<T>(args)...); }
- template <typename... T> void set_eoc_callback(T &&... args) { m_eoc_cb = eoc_delegate(std::forward<T>(args)...); }
+ template <typename... T> void set_get_analogue_callback(T &&... args) { m_get_analogue_cb.set(std::forward<T>(args)...); }
+ template <typename... T> void set_eoc_callback(T &&... args) { m_eoc_cb.set(std::forward<T>(args)...); }
DECLARE_READ_LINE_MEMBER(eoc_r);
uint8_t read(offs_t offset);