summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taito_h.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taito_h.cpp')
-rw-r--r--src/mame/drivers/taito_h.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/taito_h.cpp b/src/mame/drivers/taito_h.cpp
index a168730a5d8..4aad8ac9a1c 100644
--- a/src/mame/drivers/taito_h.cpp
+++ b/src/mame/drivers/taito_h.cpp
@@ -165,7 +165,7 @@ READ8_MEMBER(taitoh_state::syvalion_input_bypass_r)
{
/* Bypass TC0040IOC controller for analog input */
- u8 port = m_tc0040ioc->port_r(space, 0); /* read port number */
+ u8 port = m_tc0040ioc->port_r(); /* read port number */
switch (port)
{
@@ -206,7 +206,7 @@ READ8_MEMBER(taitoh_state::syvalion_input_bypass_r)
return 0x00;
default:
- return m_tc0040ioc->portreg_r(space, offset);
+ return m_tc0040ioc->portreg_r();
}
}