diff --git a/src/emu/schedule.c b/src/emu/schedule.c index f135821d201..3e26b79b997 100644 --- a/src/emu/schedule.c +++ b/src/emu/schedule.c @@ -499,7 +499,6 @@ void device_scheduler::timeslice() // if the new local CPU time is less than our target, move the target up, but not before the base if (exec->m_localtime < target) { - assert(exec->m_localtime < target); target = max(exec->m_localtime, m_basetime); LOG((" (new target)\n")); }