summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/vic10.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/vic10.c')
-rw-r--r--src/mess/drivers/vic10.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/vic10.c b/src/mess/drivers/vic10.c
index e94d7c31518..7101c887dcb 100644
--- a/src/mess/drivers/vic10.c
+++ b/src/mess/drivers/vic10.c
@@ -405,7 +405,7 @@ READ8_MEMBER( vic10_state::cia_pa_r )
// keyboard
UINT8 cia_pb = m_cia->pb_r();
UINT8 row[8] = { m_row0->read(), m_row1->read() & m_lock->read(), m_row2->read(), m_row3->read(),
- m_row4->read(), m_row5->read(), m_row6->read(), m_row7->read() };
+ m_row4->read(), m_row5->read(), m_row6->read(), m_row7->read() };
for (int i = 0; i < 8; i++)
{
@@ -446,7 +446,7 @@ READ8_MEMBER( vic10_state::cia_pb_r )
// joystick
UINT8 joy_a = m_joy1->joy_r();
-
+
data &= (0xf0 | (joy_a & 0x0f));
data &= ~(!BIT(joy_a, 5) << 4);