summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/marinedt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/marinedt.c')
-rw-r--r--src/mame/drivers/marinedt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/marinedt.c b/src/mame/drivers/marinedt.c
index ab35bfbc891..942d9becc0c 100644
--- a/src/mame/drivers/marinedt.c
+++ b/src/mame/drivers/marinedt.c
@@ -163,7 +163,7 @@ READ8_MEMBER(marinedt_state::marinedt_port1_r)
//might need to be reversed for cocktail stuff
/* x/y multiplexed */
- return input_port_read(machine(), ((m_pf & 0x08) >> 3) ? "TRACKY" : "TRACKX");
+ return ioport(((m_pf & 0x08) >> 3) ? "TRACKY" : "TRACKX")->read();
}
READ8_MEMBER(marinedt_state::marinedt_coll_r)