diff options
author | 2016-12-25 00:57:32 -0500 | |
---|---|---|
committer | 2017-01-31 21:07:05 -0500 | |
commit | 3f7e68138b2ffc87bc257d048f1effa4b685c4ef (patch) | |
tree | 387f9ede30e90d4dc4e13818bb4e0e77d9d50664 /src/devices/cpu/lh5801 | |
parent | ecf9eeefc2a9b99b9940a04cffe9dc50593dcdef (diff) |
Make devcb objects more consistently available for further configuration (nw)
Diffstat (limited to 'src/devices/cpu/lh5801')
-rw-r--r-- | src/devices/cpu/lh5801/lh5801.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/lh5801/lh5801.h b/src/devices/cpu/lh5801/lh5801.h index 4b693c1961c..d48c8661e01 100644 --- a/src/devices/cpu/lh5801/lh5801.h +++ b/src/devices/cpu/lh5801/lh5801.h @@ -61,7 +61,7 @@ enum #define MCFG_LH5801_IN(_devcb) \ - lh5801_cpu_device::set_in_func(*device, DEVCB_##_devcb); + devcb = &lh5801_cpu_device::set_in_func(*device, DEVCB_##_devcb); class lh5801_cpu_device : public cpu_device |