mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 14:39:58 +00:00
scheduler: Resolve sign conversion warning
This commit is contained in:
parent
1a45b15a8c
commit
9893da8e2c
1 changed files with 2 additions and 1 deletions
|
@ -131,7 +131,8 @@ u32 GlobalScheduler::SelectThreads() {
|
||||||
u32 cores_needing_context_switch{};
|
u32 cores_needing_context_switch{};
|
||||||
for (u32 core = 0; core < Core::Hardware::NUM_CPU_CORES; core++) {
|
for (u32 core = 0; core < Core::Hardware::NUM_CPU_CORES; core++) {
|
||||||
Scheduler& sched = kernel.Scheduler(core);
|
Scheduler& sched = kernel.Scheduler(core);
|
||||||
ASSERT(top_threads[core] == nullptr || top_threads[core]->GetProcessorID() == core);
|
ASSERT(top_threads[core] == nullptr ||
|
||||||
|
static_cast<u32>(top_threads[core]->GetProcessorID()) == core);
|
||||||
if (update_thread(top_threads[core], sched)) {
|
if (update_thread(top_threads[core], sched)) {
|
||||||
cores_needing_context_switch |= (1ul << core);
|
cores_needing_context_switch |= (1ul << core);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue