summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/apollo_kbd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/apollo_kbd.h')
-rw-r--r--src/mame/machine/apollo_kbd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/apollo_kbd.h b/src/mame/machine/apollo_kbd.h
index aba8281ba3a..97221e62fa9 100644
--- a/src/mame/machine/apollo_kbd.h
+++ b/src/mame/machine/apollo_kbd.h
@@ -32,10 +32,10 @@
//**************************************************************************
#define MCFG_APOLLO_KBD_TX_CALLBACK(_cb) \
- devcb = &downcast<apollo_kbd_device &>(*device).set_tx_cb(DEVCB_##_cb);
+ downcast<apollo_kbd_device &>(*device).set_tx_cb(DEVCB_##_cb);
#define MCFG_APOLLO_KBD_GERMAN_CALLBACK(_cb) \
- devcb = &downcast<apollo_kbd_device &>(*device).set_german_cb(DEVCB_##_cb);
+ downcast<apollo_kbd_device &>(*device).set_german_cb(DEVCB_##_cb);
//**************************************************************************