mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 17:57:58 -05:00
Correct PrepareReschedule
This commit is contained in:
committed by
FernandoS27
parent
3a94e7ea33
commit
fcc6b34fff
@ -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