1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-15 20:30:12 -06:00

core: hle: kernel: Use CurrentPhysicalCoreIndex as appropriate.

This commit is contained in:
bunnei 2021-08-06 23:20:07 -07:00
parent 629f9274ac
commit 178584e56f

View File

@ -848,15 +848,11 @@ size_t KernelCore::CurrentPhysicalCoreIndex() const {
}
Kernel::PhysicalCore& KernelCore::CurrentPhysicalCore() {
u32 core_id = impl->GetCurrentHostThreadID();
ASSERT(core_id < Core::Hardware::NUM_CPU_CORES);
return impl->cores[core_id];
return impl->cores[CurrentPhysicalCoreIndex()];
}
const Kernel::PhysicalCore& KernelCore::CurrentPhysicalCore() const {
u32 core_id = impl->GetCurrentHostThreadID();
ASSERT(core_id < Core::Hardware::NUM_CPU_CORES);
return impl->cores[core_id];
return impl->cores[CurrentPhysicalCoreIndex()];
}
Kernel::KScheduler* KernelCore::CurrentScheduler() {