emu/schedule.cpp: Mark one path as EXPECTED

This commit is contained in:
AJR 2024-10-30 11:46:50 -04:00
parent 0b54013387
commit 8c8ed8bfc2

View file

@ -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
{