mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
Core_Timing: Fix tests.
This commit is contained in:
parent
e0650a2034
commit
91f6333e23
1 changed files with 2 additions and 2 deletions
|
@ -116,11 +116,11 @@ TEST_CASE("CoreTiming[FairSharing]", "[core]") {
|
|||
keep_running = false;
|
||||
for (u32 active_core = 0; active_core < 4; ++active_core) {
|
||||
core_timing.SwitchContext(active_core);
|
||||
if (core_timing.CurrentContextCanRun()) {
|
||||
if (core_timing.CanCurrentContextRun()) {
|
||||
core_timing.AddTicks(std::min<s64>(advances, core_timing.GetDowncount()));
|
||||
core_timing.Advance();
|
||||
}
|
||||
keep_running |= core_timing.CurrentContextCanRun();
|
||||
keep_running |= core_timing.CanCurrentContextRun();
|
||||
}
|
||||
} while (keep_running);
|
||||
u64 current_time_2 = core_timing.GetTicks();
|
||||
|
|
Loading…
Reference in a new issue