fixed faulty if-condition in src/emu/cpu/i86/i186.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-08-19 10:11:44 +00:00
parent c1866f57db
commit cb281a06a5

View File

@ -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;
}