summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/cdp1861.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/cdp1861.h')
-rw-r--r--src/devices/video/cdp1861.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/cdp1861.h b/src/devices/video/cdp1861.h
index 765be92de8b..fc75e765279 100644
--- a/src/devices/video/cdp1861.h
+++ b/src/devices/video/cdp1861.h
@@ -34,13 +34,13 @@
//**************************************************************************
#define MCFG_CDP1861_IRQ_CALLBACK(_write) \
- devcb = &downcast<cdp1861_device &>(*device).set_irq_wr_callback(DEVCB_##_write);
+ downcast<cdp1861_device &>(*device).set_irq_wr_callback(DEVCB_##_write);
#define MCFG_CDP1861_DMA_OUT_CALLBACK(_write) \
- devcb = &downcast<cdp1861_device &>(*device).set_dma_out_wr_callback(DEVCB_##_write);
+ downcast<cdp1861_device &>(*device).set_dma_out_wr_callback(DEVCB_##_write);
#define MCFG_CDP1861_EFX_CALLBACK(_write) \
- devcb = &downcast<cdp1861_device &>(*device).set_efx_wr_callback(DEVCB_##_write);
+ downcast<cdp1861_device &>(*device).set_efx_wr_callback(DEVCB_##_write);
#define MCFG_CDP1861_SCREEN_ADD(_cdptag, _tag, _clock) \