mirror of
https://github.com/holub/mame
synced 2025-04-29 11:30:28 +03:00
removed unnecessary assert from src/emu/schedule.c (nw)
This commit is contained in:
parent
3968a42ccb
commit
dacbc6f868
@ -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"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user