From a96d323817251d18fede323185b590a0403ceefb Mon Sep 17 00:00:00 2001 From: cracyc Date: Tue, 5 Nov 2013 18:38:21 +0000 Subject: [PATCH] (mess) southbridge: make at586 fdc word [Carl] --- src/mess/machine/southbridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/machine/southbridge.c b/src/mess/machine/southbridge.c index 0c495fa3dbf..c1ff1d28ca6 100644 --- a/src/mess/machine/southbridge.c +++ b/src/mess/machine/southbridge.c @@ -459,7 +459,7 @@ READ8_MEMBER( southbridge_device::at_portb_r ) /* This needs fixing/updating not sure what this is meant to fix */ if ( --m_poll_delay < 0 ) { - m_poll_delay = 20; + m_poll_delay = 25; m_at_offset1 ^= 0x10; } data = (data & ~0x10) | ( m_at_offset1 & 0x10 );