summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/pcd8544.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/pcd8544.h')
-rw-r--r--src/devices/video/pcd8544.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/pcd8544.h b/src/devices/video/pcd8544.h
index 069984e9483..6706097a4db 100644
--- a/src/devices/video/pcd8544.h
+++ b/src/devices/video/pcd8544.h
@@ -28,7 +28,7 @@ public:
// construction/destruction
pcd8544_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- template <typename... T> void set_screen_update_cb(T &&... args) { m_screen_update_cb = screen_update_delegate(std::forward<T>(args)...); }
+ template <typename... T> void set_screen_update_cb(T &&... args) { m_screen_update_cb.set(std::forward<T>(args)...); }
// device interface
DECLARE_WRITE_LINE_MEMBER(sdin_w);