summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gunbustr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gunbustr.c')
-rw-r--r--src/mame/drivers/gunbustr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gunbustr.c b/src/mame/drivers/gunbustr.c
index d0ed564ec28..4e8bb00d61f 100644
--- a/src/mame/drivers/gunbustr.c
+++ b/src/mame/drivers/gunbustr.c
@@ -174,8 +174,8 @@ WRITE32_MEMBER(gunbustr_state::motor_control_w)
READ32_MEMBER(gunbustr_state::gunbustr_gun_r)
{
- return ( input_port_read(machine(), "LIGHT0_X") << 24) | (input_port_read(machine(), "LIGHT0_Y") << 16) |
- ( input_port_read(machine(), "LIGHT1_X") << 8) | input_port_read(machine(), "LIGHT1_Y");
+ return ( ioport("LIGHT0_X")->read() << 24) | (ioport("LIGHT0_Y")->read() << 16) |
+ ( ioport("LIGHT1_X")->read() << 8) | ioport("LIGHT1_Y")->read();
}
WRITE32_MEMBER(gunbustr_state::gunbustr_gun_w)