mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
Kernel/Thread: Corrected a typo in an assert about the processor id.
This commit is contained in:
parent
5a763e8a5a
commit
d1f9c750a6
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ void Thread::ChangeCore(u32 core, u64 mask) {
|
|||
new_processor_id = ideal_core;
|
||||
}
|
||||
|
||||
ASSERT(new_processor_id < 4);
|
||||
ASSERT(*new_processor_id < 4);
|
||||
|
||||
// Add thread to new core's scheduler
|
||||
auto& next_scheduler = Core::System().GetInstance().Scheduler(*new_processor_id);
|
||||
|
|
Loading…
Reference in a new issue