Procházet zdrojové kódy

kernel: KSchedulerPriorityQueue: Lowest priority should be LowestThreadPriority.

bunnei před 5 roky
rodič
revize
1772ebeb1e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/core/hle/kernel/global_scheduler_context.h

+ 1 - 1
src/core/hle/kernel/global_scheduler_context.h

@@ -21,7 +21,7 @@ class KernelCore;
 class SchedulerLock;
 
 using KSchedulerPriorityQueue =
-    KPriorityQueue<KThread, Core::Hardware::NUM_CPU_CORES, Svc::LowestThreadPriority + 1,
+    KPriorityQueue<KThread, Core::Hardware::NUM_CPU_CORES, Svc::LowestThreadPriority,
                    Svc::HighestThreadPriority>;
 
 static constexpr s32 HighestCoreMigrationAllowedPriority = 2;