diff options
| author | 2008-11-23 10:47:15 +0000 | |
|---|---|---|
| committer | 2008-11-23 10:47:15 +0000 | |
| commit | 33a5b7e9aaf70e9224170a3414492c167f94ad93 (patch) | |
| tree | 99e296764c4acc4f0ec8e00f7159c3c8cb514485 /src | |
| parent | a68e251fe8fb14aec9f37bdb69e9ff24394ce555 (diff) | |
fix for mantis 02668 (please credit the fix to mamesick)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/vendetta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/vendetta.c b/src/mame/drivers/vendetta.c index 4d14d27fc37..2272416a02f 100644 --- a/src/mame/drivers/vendetta.c +++ b/src/mame/drivers/vendetta.c @@ -148,7 +148,7 @@ static READ8_HANDLER( vendetta_eeprom_r ) res |= 0x02; //konami_eeprom_ack() << 5; /* add the ack */ - res |= input_port_read(space->machine, "EEPROM") & 0x0d; /* test switch */ + res |= input_port_read(space->machine, "EEPROM") & 0x0c; /* test switch */ if (init_eeprom_count) { |
