summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-09-18 16:11:25 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-09-18 16:11:25 +0000
commitacc32658ac1c51094afff4a832d509629bd77cac (patch)
tree2e8a609366cde7ad065742868589e576392e3b09
parent5f597be8b1b76f6a157747b270fee63d6eabcd08 (diff)
From: Fabio Priuli [mailto:doge.fabio@gmail.com]
Sent: Thursday, September 18, 2008 6:01 AM To: submit@mamedev.org Subject: fix for MT 2252 1 line fix (silly mistake that I was sure I had fixed BEFORE sending the patch) :( Regards, Fabio
-rw-r--r--src/mame/machine/nb1413m3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/nb1413m3.c b/src/mame/machine/nb1413m3.c
index 51f9dd08c62..c16e7286869 100644
--- a/src/mame/machine/nb1413m3.c
+++ b/src/mame/machine/nb1413m3.c
@@ -395,7 +395,7 @@ CUSTOM_INPUT( nb1413m3_outcoin_flag_r )
READ8_HANDLER( nb1413m3_inputport0_r )
{
- return ((input_port_read(machine, "SYSTEM") & 0xfc) | ((nb1413m3_outcoin_flag & 0x01) << 1));
+ return ((input_port_read(machine, "SYSTEM") & 0xfd) | ((nb1413m3_outcoin_flag & 0x01) << 1));
}
READ8_HANDLER( nb1413m3_inputport1_r )