mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 08:07:58 -05:00
Core Timing: Rework Core Timing to run all cores evenly.
This commit is contained in:
committed by
FernandoS27
parent
e664c24355
commit
555866f8dc
@ -116,7 +116,7 @@ public:
|
||||
num_interpreted_instructions = 0;
|
||||
}
|
||||
u64 GetTicksRemaining() override {
|
||||
return std::max(parent.system.CoreTiming().GetDowncount(), 0);
|
||||
return std::max<s64>(parent.system.CoreTiming().GetDowncount(), 0LL);
|
||||
}
|
||||
u64 GetCNTPCT() override {
|
||||
return Timing::CpuCyclesToClockCycles(parent.system.CoreTiming().GetTicks());
|
||||
|
Reference in New Issue
Block a user