summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo_ctrl/kizuna4p.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo_ctrl/kizuna4p.cpp')
-rw-r--r--src/devices/bus/neogeo_ctrl/kizuna4p.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/neogeo_ctrl/kizuna4p.cpp b/src/devices/bus/neogeo_ctrl/kizuna4p.cpp
index 4ef3e3d78fe..ccc08ef61ed 100644
--- a/src/devices/bus/neogeo_ctrl/kizuna4p.cpp
+++ b/src/devices/bus/neogeo_ctrl/kizuna4p.cpp
@@ -119,7 +119,7 @@ void neogeo_kizuna4p_device::device_start()
// in0_r
//-------------------------------------------------
-READ8_MEMBER(neogeo_kizuna4p_device::in0_r)
+uint8_t neogeo_kizuna4p_device::in0_r()
{
return m_joy[BIT(m_ctrl_sel, 0) << 1]->read() & ~(BIT(m_ctrl_sel, 2) << (BIT(m_ctrl_sel, 0) | 4));
}
@@ -128,7 +128,7 @@ READ8_MEMBER(neogeo_kizuna4p_device::in0_r)
// in1_r
//-------------------------------------------------
-READ8_MEMBER(neogeo_kizuna4p_device::in1_r)
+uint8_t neogeo_kizuna4p_device::in1_r()
{
return m_joy[(BIT(m_ctrl_sel, 0) << 1) | 1]->read() & ~(BIT(m_ctrl_sel, 2) << (BIT(m_ctrl_sel, 0) | 4));
}