mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-25 00:40:32 +00:00
Correct PrepareReschedule
This commit is contained in:
committed by
FernandoS27
parent
655ed87f53
commit
87334f0f16
@@ -404,6 +404,11 @@ void System::PrepareReschedule() {
|
||||
CurrentCpuCore().PrepareReschedule();
|
||||
}
|
||||
|
||||
void System::PrepareReschedule(s32 core_index) {
|
||||
if (core_index >= 0)
|
||||
CpuCore(core_index).PrepareReschedule();
|
||||
}
|
||||
|
||||
PerfStatsResults System::GetAndResetPerfStats() {
|
||||
return impl->GetAndResetPerfStats();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user