summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nes_vt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/nes_vt.cpp')
-rw-r--r--src/mame/drivers/nes_vt.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/drivers/nes_vt.cpp b/src/mame/drivers/nes_vt.cpp
index 8c9e241d5e3..7f18938c98e 100644
--- a/src/mame/drivers/nes_vt.cpp
+++ b/src/mame/drivers/nes_vt.cpp
@@ -1395,6 +1395,8 @@ void nes_vt_state::nes_vt(machine_config &config)
NES_CONTROL_PORT(config, m_ctrl1, nes_control_port1_devices, "joypad");
NES_CONTROL_PORT(config, m_ctrl2, nes_control_port2_devices, "joypad");
+ m_ctrl1->set_screen_tag(m_screen);
+ m_ctrl2->set_screen_tag(m_screen);
}
void nes_vt_state::nes_vt_ddr(machine_config &config)
@@ -1403,6 +1405,8 @@ void nes_vt_state::nes_vt_ddr(machine_config &config)
NES_CONTROL_PORT(config, m_ctrl1, majesco_control_port1_devices, "ddr");
NES_CONTROL_PORT(config, m_ctrl2, majesco_control_port2_devices, nullptr);
+ m_ctrl1->set_screen_tag(m_screen);
+ m_ctrl2->set_screen_tag(m_screen);
}
void nes_vt_state::nes_vt_hum(machine_config &config)