summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pc1512kb.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-06-17 01:50:47 +1000
committer Vas Crabb <vas@vastheman.com>2018-06-17 01:50:47 +1000
commitb0d19b944db2b37b52ea7a636c98b2010c996a81 (patch)
tree42c1dfd2a8148f2d2ec45100083484dfcfda0717 /src/mame/machine/pc1512kb.cpp
parent67fd77d2442fc4f1b22829171f4642df5b59a623 (diff)
more macro removal and overload disambiguation (nw)
Diffstat (limited to 'src/mame/machine/pc1512kb.cpp')
-rw-r--r--src/mame/machine/pc1512kb.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mame/machine/pc1512kb.cpp b/src/mame/machine/pc1512kb.cpp
index f5b543f0c4e..fcbaf350f6b 100644
--- a/src/mame/machine/pc1512kb.cpp
+++ b/src/mame/machine/pc1512kb.cpp
@@ -350,10 +350,7 @@ READ8_MEMBER( pc1512_keyboard_device::kb_bus_r )
if (!BIT(m_kb_y, 8)) data &= m_y[8]->read();
if (!BIT(m_kb_y, 9)) data &= m_y[9]->read();
if (!BIT(m_kb_y, 10)) data &= m_y[10]->read();
- if (!m_joy_com)
- {
- data &= m_joy->joy_r();
- }
+ if (!m_joy_com) data &= m_joy->read_joy();
return data;
}