diff options
| author | 2008-08-06 14:13:03 +0000 | |
|---|---|---|
| committer | 2008-08-06 14:13:03 +0000 | |
| commit | 769ad97695e0eecc3771b33b16313002a4d89afc (patch) | |
| tree | 6504df53052bface7032e10ec807bb130e5606ad | |
| parent | a9e375ec8cdae428b2740bcacdc3d47e06a32974 (diff) | |
From: Fabio Priuli [mailto:doge.fabio@gmail.com]
Subject: fix for MT bug 2056
I failed to see this wrong tag for almost 2 days!! One would guess that
looking for the cause of coins problems, an handler with the comment "coin
inputs" should have been noticed immediately. I saw it only this morning :(
However, fix in attachment.
Regards,
Fabio Priuli
| -rw-r--r-- | src/mame/drivers/taito_b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/taito_b.c b/src/mame/drivers/taito_b.c index ca4b6ef6212..b4b7189ccde 100644 --- a/src/mame/drivers/taito_b.c +++ b/src/mame/drivers/taito_b.c @@ -414,7 +414,7 @@ static READ16_HANDLER( eeprom_r ) int res; res = (eeprom_read_bit() & 0x01); - res |= input_port_read(machine, "IN1") & 0xfe; /* coin inputs */ + res |= input_port_read(machine, "DSWB") & 0xfe; /* coin inputs */ return res; } |
