summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/nt7534.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/nt7534.h')
-rw-r--r--src/devices/video/nt7534.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/nt7534.h b/src/devices/video/nt7534.h
index 75390f8acaa..caece0de4d1 100644
--- a/src/devices/video/nt7534.h
+++ b/src/devices/video/nt7534.h
@@ -29,7 +29,7 @@ public:
// construction/destruction
nt7534_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
- template <typename... T> void set_pixel_update_cb(T &&... args) { m_pixel_update_cb = pixel_update_delegate(std::forward<T>(args)...); }
+ template <typename... T> void set_pixel_update_cb(T &&... args) { m_pixel_update_cb.set(std::forward<T>(args)...); }
// device interface
virtual DECLARE_WRITE8_MEMBER(write);