removed now obsolete modification for FASTDEBUG=1 (nw)

This commit is contained in:
Oliver Stöneberg 2015-03-20 12:37:24 +01:00
parent 1957bc420d
commit d716c757cb

View File

@ -451,9 +451,7 @@ void device_scheduler::timeslice()
attoseconds_t delta = target.attoseconds - exec->m_localtime.attoseconds;
if (delta < 0 && target.seconds > exec->m_localtime.seconds)
delta += ATTOSECONDS_PER_SECOND;
#ifndef MAME_DEBUG_FAST
assert(delta == (target - exec->m_localtime).as_attoseconds());
#endif
// if we have enough for at least 1 cycle, do the math
if (delta >= exec->m_attoseconds_per_cycle)