diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-05-29 17:37:37 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 11:36:21 -0400 |
commit | 7fd7d05838b88e9dd63a7329e29ea355669a5f18 (patch) | |
tree | 083e938c7a3a82be30050fb990fe2d62c4aeee57 /src/common/wall_clock.cpp | |
parent | 272a87127a68bbb9d7c7984e619ee12702d7b8e0 (diff) |
Common/Kernel: Corrections and small bug fixing.
Diffstat (limited to 'src/common/wall_clock.cpp')
-rw-r--r-- | src/common/wall_clock.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/common/wall_clock.cpp b/src/common/wall_clock.cpp index a46db6bbf..3afbdb898 100644 --- a/src/common/wall_clock.cpp +++ b/src/common/wall_clock.cpp @@ -68,12 +68,7 @@ std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency, const auto& caps = GetCPUCaps(); u64 rtsc_frequency = 0; if (caps.invariant_tsc) { - if (caps.base_frequency != 0) { - rtsc_frequency = static_cast<u64>(caps.base_frequency) * 1000000U; - } - if (rtsc_frequency == 0) { - rtsc_frequency = EstimateRDTSCFrequency(); - } + rtsc_frequency = EstimateRDTSCFrequency(); } if (rtsc_frequency == 0) { return std::make_unique<StandardWallClock>(emulated_cpu_frequency, |