summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ygv608.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ygv608.h')
-rw-r--r--src/mame/video/ygv608.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/ygv608.h b/src/mame/video/ygv608.h
index c2c9e82ed3a..ae054a0ac6b 100644
--- a/src/mame/video/ygv608.h
+++ b/src/mame/video/ygv608.h
@@ -315,10 +315,10 @@ DECLARE_DEVICE_TYPE(YGV608, ygv608_device)
//**************************************************************************
#define MCFG_YGV608_VBLANK_HANDLER( _intcallb ) \
- devcb = &downcast<ygv608_device &>(*device).set_vblank_callback(DEVCB_##_intcallb);
+ downcast<ygv608_device &>(*device).set_vblank_callback(DEVCB_##_intcallb);
#define MCFG_YGV608_RASTER_HANDLER( _intcallb ) \
- devcb = &downcast<ygv608_device &>(*device).set_raster_callback(DEVCB_##_intcallb);
+ downcast<ygv608_device &>(*device).set_raster_callback(DEVCB_##_intcallb);
#endif