mirror of
https://github.com/holub/mame
synced 2025-05-22 05:38:52 +03:00
Fix bad bug in scheduler quantum code.
This commit is contained in:
parent
a33640f46d
commit
94233e688d
@ -472,7 +472,7 @@ void timer_add_scheduling_quantum(running_machine *machine, attoseconds_t quantu
|
||||
|
||||
/* fill in the item */
|
||||
quantum_list[blank].requested = quantum;
|
||||
quantum_list[blank].actual = MAX(quantum_list[curr].requested, quantum_minimum);
|
||||
quantum_list[blank].actual = MAX(quantum_list[blank].requested, quantum_minimum);
|
||||
quantum_list[blank].expire = expire;
|
||||
|
||||
/* update the minimum */
|
||||
|
Loading…
Reference in New Issue
Block a user