diff options
author | 2019-03-30 12:48:18 -0300 | |
---|---|---|
committer | 2019-03-30 11:48:18 -0400 | |
commit | 7f92ee8016b4785a1e4408a7fb1d643e4a5d40d8 (patch) | |
tree | ff5f82393ed8ae1af3588e64c9b3144d850f4380 /src/devices/bus/nes_ctrl/ctrl.cpp | |
parent | 06176a02a528fa92c068bdfa94d2d717ee4f5454 (diff) |
nes: Replace VDP bitmap access with screen().pixel() for lightgun emulation (#4665)
Diffstat (limited to 'src/devices/bus/nes_ctrl/ctrl.cpp')
-rw-r--r-- | src/devices/bus/nes_ctrl/ctrl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/bus/nes_ctrl/ctrl.cpp b/src/devices/bus/nes_ctrl/ctrl.cpp index 2724e86dcaf..bacbd952c8a 100644 --- a/src/devices/bus/nes_ctrl/ctrl.cpp +++ b/src/devices/bus/nes_ctrl/ctrl.cpp @@ -125,7 +125,6 @@ nes_control_port_device::~nes_control_port_device() void nes_control_port_device::device_start() { m_device = dynamic_cast<device_nes_control_port_interface *>(get_card_device()); - m_brightpixel_cb.bind_relative_to(*owner()); } |