devcpu: do an abort_timeslice instead of eating all cycles on defer_access

This commit is contained in:
hap 2024-11-16 15:37:25 +01:00
parent ea02851fc8
commit fb8198689a

View File

@ -100,7 +100,6 @@ void cpu_device::access_after_delay(u32 cycles) noexcept
void cpu_device::defer_access() noexcept
{
if(*m_icountptr > 0)
*m_icountptr = 0;
abort_timeslice();
m_access_to_be_redone = true;
}