diff --git a/src/emu/schedule.cpp b/src/emu/schedule.cpp index acc596d6798..f28d7163b86 100644 --- a/src/emu/schedule.cpp +++ b/src/emu/schedule.cpp @@ -473,7 +473,7 @@ void device_scheduler::timeslice() // update the local time for this CPU attotime deltatime; - if (ran < exec->m_cycles_per_second) + if (EXPECTED(ran < exec->m_cycles_per_second)) deltatime = attotime(0, exec->m_attoseconds_per_cycle * ran); else {