summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/cuda.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/cuda.h')
-rw-r--r--src/mame/machine/cuda.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/cuda.h b/src/mame/machine/cuda.h
index f7984087b33..99f786908b2 100644
--- a/src/mame/machine/cuda.h
+++ b/src/mame/machine/cuda.h
@@ -38,16 +38,16 @@
MCFG_DEVICE_REMOVE(CUDA_TAG)
#define MCFG_CUDA_RESET_CALLBACK(_cb) \
- devcb = &downcast<cuda_device &>(*device).set_reset_cb(DEVCB_##_cb);
+ downcast<cuda_device &>(*device).set_reset_cb(DEVCB_##_cb);
#define MCFG_CUDA_LINECHANGE_CALLBACK(_cb) \
- devcb = &downcast<cuda_device &>(*device).set_linechange_cb(DEVCB_##_cb);
+ downcast<cuda_device &>(*device).set_linechange_cb(DEVCB_##_cb);
#define MCFG_CUDA_VIA_CLOCK_CALLBACK(_cb) \
- devcb = &downcast<cuda_device &>(*device).set_via_clock_cb(DEVCB_##_cb);
+ downcast<cuda_device &>(*device).set_via_clock_cb(DEVCB_##_cb);
#define MCFG_CUDA_VIA_DATA_CALLBACK(_cb) \
- devcb = &downcast<cuda_device &>(*device).set_via_data_cb(DEVCB_##_cb);
+ downcast<cuda_device &>(*device).set_via_data_cb(DEVCB_##_cb);
//**************************************************************************
// TYPE DEFINITIONS