summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/aica.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/aica.h')
-rw-r--r--src/devices/sound/aica.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/aica.h b/src/devices/sound/aica.h
index a84fb3e31ae..91e7be6f6d2 100644
--- a/src/devices/sound/aica.h
+++ b/src/devices/sound/aica.h
@@ -21,10 +21,10 @@
downcast<aica_device &>(*device).set_roffset((offs));
#define MCFG_AICA_IRQ_CB(cb) \
- devcb = &downcast<aica_device &>(*device).set_irq_callback((DEVCB_##cb));
+ downcast<aica_device &>(*device).set_irq_callback((DEVCB_##cb));
#define MCFG_AICA_MAIN_IRQ_CB(cb) \
- devcb = &downcast<aica_device &>(*device).set_main_irq_callback((DEVCB_##cb));
+ downcast<aica_device &>(*device).set_main_irq_callback((DEVCB_##cb));
class aica_device : public device_t, public device_sound_interface
{