diff options
author | 2008-04-06 22:02:39 +0000 | |
---|---|---|
committer | 2008-04-06 22:02:39 +0000 | |
commit | 8a914b3d22703ab8570fd441b8ebc22c04d91a23 (patch) | |
tree | 984c9d9259f0a2f5c44adc11a492eb106f0cd8a7 /src/mame/drivers/ssozumo.c | |
parent | edb6e3de5a0610ff6e2166904a7f36e543956449 (diff) |
Renamed input port functions:
readinputport -> input_port_read_indexed
readinputportbytag -> input_port_read
readinputportbytag_safe -> input_port_read_safe
Added machine parameter to input port functions. Updated
many drivers to accomplish this.
Diffstat (limited to 'src/mame/drivers/ssozumo.c')
-rw-r--r-- | src/mame/drivers/ssozumo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ssozumo.c b/src/mame/drivers/ssozumo.c index ca4c9d9b84d..7b0f4601cdf 100644 --- a/src/mame/drivers/ssozumo.c +++ b/src/mame/drivers/ssozumo.c @@ -34,7 +34,7 @@ static INTERRUPT_GEN( ssozumo_interrupt ) { static int coin; - if ((readinputport(0) & 0xc0) != 0xc0) + if ((input_port_read_indexed(machine, 0) & 0xc0) != 0xc0) { if (coin == 0) { |