summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/cem3394.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/cem3394.h')
-rw-r--r--src/devices/sound/cem3394.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/cem3394.h b/src/devices/sound/cem3394.h
index 3a2d59afc02..40a6a2d0204 100644
--- a/src/devices/sound/cem3394.h
+++ b/src/devices/sound/cem3394.h
@@ -30,7 +30,7 @@ public:
cem3394_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- template <typename... T> void set_ext_input_callback(T &&... args) { m_ext_cb = ext_input_delegate(std::forward<T>(args)...); }
+ template <typename... T> void set_ext_input_callback(T &&... args) { m_ext_cb.set(std::forward<T>(args)...); }
void set_vco_zero_freq(double freq) { m_vco_zero_freq = freq; }
void set_filter_zero_freq(double freq) { m_filter_zero_freq = freq; }