summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/uv201.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/uv201.h')
-rw-r--r--src/mame/video/uv201.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/uv201.h b/src/mame/video/uv201.h
index 39311855a2c..26d11435a92 100644
--- a/src/mame/video/uv201.h
+++ b/src/mame/video/uv201.h
@@ -65,13 +65,13 @@
//**************************************************************************
#define MCFG_UV201_EXT_INT_CALLBACK(_write) \
- devcb = &downcast<uv201_device &>(*device).set_ext_int_wr_callback(DEVCB_##_write);
+ downcast<uv201_device &>(*device).set_ext_int_wr_callback(DEVCB_##_write);
#define MCFG_UV201_HBLANK_CALLBACK(_write) \
- devcb = &downcast<uv201_device &>(*device).set_hblank_wr_callback(DEVCB_##_write);
+ downcast<uv201_device &>(*device).set_hblank_wr_callback(DEVCB_##_write);
#define MCFG_UV201_DB_CALLBACK(_read) \
- devcb = &downcast<uv201_device &>(*device).set_db_rd_callback(DEVCB_##_read);
+ downcast<uv201_device &>(*device).set_db_rd_callback(DEVCB_##_read);