summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti99_8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti99_8.cpp')
-rw-r--r--src/mame/drivers/ti99_8.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/ti99_8.cpp b/src/mame/drivers/ti99_8.cpp
index 00a461d5614..010821b54e7 100644
--- a/src/mame/drivers/ti99_8.cpp
+++ b/src/mame/drivers/ti99_8.cpp
@@ -465,19 +465,19 @@ uint8_t ti99_8_state::psi_input(offs_t offset)
case tms9901_device::INT6:
if (m_keyboard_column >= 14)
return BIT(m_joyport->read_port(),0);
-
+ [[fallthrough]];
case tms9901_device::INT7_P15:
if (m_keyboard_column >= 14)
return BIT(m_joyport->read_port(),4);
-
+ [[fallthrough]];
case tms9901_device::INT8_P14:
if (m_keyboard_column >= 14)
return BIT(m_joyport->read_port(),1);
-
+ [[fallthrough]];
case tms9901_device::INT9_P13:
if (m_keyboard_column >= 14)
return BIT(m_joyport->read_port(),2);
-
+ [[fallthrough]];
case tms9901_device::INT10_P12:
if (m_keyboard_column >= 14)
return BIT(m_joyport->read_port(),3);