mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
fixed faulty if-condition in src/emu/cpu/i86/i186.c (nw)
This commit is contained in:
parent
c1866f57db
commit
cb281a06a5
@ -1014,7 +1014,7 @@ void i80186_cpu_device::device_timer(emu_timer &timer, device_timer_id id, int p
|
||||
struct dma_state *d = &m_dma[which];
|
||||
|
||||
d->drq_delay = false;
|
||||
if(d->drq_state);
|
||||
if(d->drq_state)
|
||||
drq_callback(which);
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user