mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
emu/schedule.cpp: Mark one path as EXPECTED
This commit is contained in:
parent
0b54013387
commit
8c8ed8bfc2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue