From 8c8ed8bfc2460ccb2f7089d9d30cd69348a592eb Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 30 Oct 2024 11:46:50 -0400 Subject: emu/schedule.cpp: Mark one path as EXPECTED --- src/emu/schedule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v1.2.3