summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hlcd0515.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hlcd0515.h')
-rw-r--r--src/devices/video/hlcd0515.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/hlcd0515.h b/src/devices/video/hlcd0515.h
index 0f4e1444a93..898cf93ab1e 100644
--- a/src/devices/video/hlcd0515.h
+++ b/src/devices/video/hlcd0515.h
@@ -43,11 +43,11 @@
// COL/ROW pins (offset for ROW)
#define MCFG_HLCD0515_WRITE_COLS_CB(_devcb) \
- devcb = &downcast<hlcd0515_device &>(*device).set_write_cols_callback(DEVCB_##_devcb);
+ downcast<hlcd0515_device &>(*device).set_write_cols_callback(DEVCB_##_devcb);
// DATA OUT pin, don't use on HLCD0569
#define MCFG_HLCD0515_WRITE_DATA_CB(_devcb) \
- devcb = &downcast<hlcd0515_device &>(*device).set_write_data_callback(DEVCB_##_devcb);
+ downcast<hlcd0515_device &>(*device).set_write_data_callback(DEVCB_##_devcb);
class hlcd0515_device : public device_t