From dacbc6f868aea6530c7618b5d7ca8f3a640369dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Tue, 1 Jul 2014 21:29:12 +0000 Subject: [PATCH] removed unnecessary assert from src/emu/schedule.c (nw) --- src/emu/schedule.c | 1 - 1 file changed, 1 deletion(-) 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")); }