mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 07:40:10 +00:00
wall_clock: use standard wall clock if rtsc frequency is too low
This commit is contained in:
parent
2136ebccd6
commit
e4c63d432d
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency,
|
|||
if (caps.invariant_tsc) {
|
||||
rtsc_frequency = EstimateRDTSCFrequency();
|
||||
}
|
||||
if (rtsc_frequency == 0) {
|
||||
|
||||
// Fallback to StandardWallClock if rtsc period is higher than a nano second
|
||||
if (rtsc_frequency <= 1000000000) {
|
||||
return std::make_unique<StandardWallClock>(emulated_cpu_frequency,
|
||||
emulated_clock_frequency);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue