Browse Source

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

nce_cpp
bunnei 5 years ago
parent
commit
9b0a981710
  1. 3
      src/core/hle/kernel/k_scheduler.cpp

3
src/core/hle/kernel/k_scheduler.cpp

@ -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) {

Loading…
Cancel
Save