summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/exidy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/exidy.h')
-rw-r--r--src/mame/audio/exidy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/exidy.h b/src/mame/audio/exidy.h
index 703c4cd1fe1..b40d4fd489e 100644
--- a/src/mame/audio/exidy.h
+++ b/src/mame/audio/exidy.h
@@ -127,13 +127,13 @@ protected:
};
#define MCFG_EXIDY_VENTURE_WRITEPA_HANDLER(_devcb) \
- devcb = &downcast<venture_sound_device &>(*device).set_pa_callback(DEVCB_##_devcb);
+ downcast<venture_sound_device &>(*device).set_pa_callback(DEVCB_##_devcb);
#define MCFG_EXIDY_VENTURE_WRITEPB_HANDLER(_devcb) \
- devcb = &downcast<venture_sound_device &>(*device).set_pb_callback(DEVCB_##_devcb);
+ downcast<venture_sound_device &>(*device).set_pb_callback(DEVCB_##_devcb);
#define MCFG_EXIDY_VENTURE_CA2_HANDLER(_devcb) \
- devcb = &downcast<venture_sound_device &>(*device).set_ca2_callback(DEVCB_##_devcb);
+ downcast<venture_sound_device &>(*device).set_ca2_callback(DEVCB_##_devcb);
#define MCFG_EXIDY_VENTURE_CB2_HANDLER(_devcb) \
- devcb = &downcast<venture_sound_device &>(*device).set_cb2_callback(DEVCB_##_devcb);
+ downcast<venture_sound_device &>(*device).set_cb2_callback(DEVCB_##_devcb);
class venture_sound_device : public exidy_sh8253_sound_device
{