summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/i8244.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/i8244.h')
-rw-r--r--src/devices/video/i8244.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/i8244.h b/src/devices/video/i8244.h
index f1583129cc2..0e8fd60159e 100644
--- a/src/devices/video/i8244.h
+++ b/src/devices/video/i8244.h
@@ -26,9 +26,9 @@
MCFG_I8244_IRQ_CB(_irq_cb) \
MCFG_I8244_POSTPROCESS_CB(_postprocess_cb)
#define MCFG_I8244_IRQ_CB(_devcb) \
- devcb = &downcast<i8244_device &>(*device).set_irq_cb(DEVCB_##_devcb);
+ downcast<i8244_device &>(*device).set_irq_cb(DEVCB_##_devcb);
#define MCFG_I8244_POSTPROCESS_CB(_devcb) \
- devcb = &downcast<i8244_device &>(*device).set_postprocess_cb(DEVCB_##_devcb);
+ downcast<i8244_device &>(*device).set_postprocess_cb(DEVCB_##_devcb);
#define MCFG_I8245_ADD(_tag, _clock, _screen_tag, _irq_cb, _postprocess_cb) \
MCFG_DEVICE_ADD(_tag, I8245, _clock) \
MCFG_VIDEO_SET_SCREEN(_screen_tag) \