hle: kernel: k_scheduler: Fix for single core mode.

This commit is contained in:
bunnei 2021-01-20 22:27:38 -08:00
parent 0a1449e04b
commit f6b10fad63

View File

@ -38,7 +38,8 @@ void KScheduler::RescheduleCores(KernelCore& kernel, u64 cores_pending_reschedul
bool must_context_switch{};
if (scheduler) {
current_core = scheduler->core_id;
must_context_switch = true;
// TODO(bunnei): Should be set to true when we deprecate single core
must_context_switch = !kernel.IsPhantomModeForSingleCore();
}
while (cores_pending_reschedule != 0) {