From bcc51297e6020aa0cdc0ee107f77ef06b08fbac0 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 27 Oct 2015 19:22:15 +0100 Subject: [PATCH] typo/bug fix, thanks to PVS (nw) --- src/devices/machine/r10696.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/r10696.c b/src/devices/machine/r10696.c index ab20caed731..819d31084e9 100644 --- a/src/devices/machine/r10696.c +++ b/src/devices/machine/r10696.c @@ -154,7 +154,7 @@ READ8_MEMBER( r10696_device::io_r ) io_a = m_iord(0); io_b = m_iord(1); io_c = m_iord(2); - data = (io_a | io_b | io_a) & 0x0f; + data = (io_a | io_b | io_c) & 0x0f; break; case 0x01: // Read Groups B | C io_b = m_iord(1);