summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes_ctrl/joypad.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes_ctrl/joypad.cpp')
-rw-r--r--src/devices/bus/nes_ctrl/joypad.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/nes_ctrl/joypad.cpp b/src/devices/bus/nes_ctrl/joypad.cpp
index f8ae2c30e95..0605eea2d9a 100644
--- a/src/devices/bus/nes_ctrl/joypad.cpp
+++ b/src/devices/bus/nes_ctrl/joypad.cpp
@@ -174,7 +174,8 @@ static void arcstick_daisy(device_slot_interface &device)
void nes_arcstick_device::device_add_mconfig(machine_config &config)
{
// expansion port to allow daisy chaining
- NES_CONTROL_PORT(config, "subexp", arcstick_daisy, nullptr);
+ NES_CONTROL_PORT(config, m_daisychain, arcstick_daisy, nullptr);
+ m_daisychain->set_screen_tag(m_port->m_screen);
}