mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 14:07:48 +00:00
Core Timing: Rework Core Timing to run all cores evenly.
This commit is contained in:
parent
f9b784f1a6
commit
93a18da674
6 changed files with 89 additions and 38 deletions
|
@ -156,7 +156,7 @@ void ARM_Unicorn::Run() {
|
|||
if (GDBStub::IsServerEnabled()) {
|
||||
ExecuteInstructions(std::max(4000000, 0));
|
||||
} else {
|
||||
ExecuteInstructions(std::max(system.CoreTiming().GetDowncount(), 0));
|
||||
ExecuteInstructions(std::max<s64>(system.CoreTiming().GetDowncount(), 0LL));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue