diff options
Diffstat (limited to 'src/core/perf_stats.h')
| -rw-r--r-- | src/core/perf_stats.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/perf_stats.h b/src/core/perf_stats.h index a2541906f..816202588 100644 --- a/src/core/perf_stats.h +++ b/src/core/perf_stats.h | |||
| @@ -33,7 +33,7 @@ public: | |||
| 33 | explicit PerfStats(u64 title_id_); | 33 | explicit PerfStats(u64 title_id_); |
| 34 | ~PerfStats(); | 34 | ~PerfStats(); |
| 35 | 35 | ||
| 36 | using Clock = std::chrono::high_resolution_clock; | 36 | using Clock = std::chrono::steady_clock; |
| 37 | 37 | ||
| 38 | void BeginSystemFrame(); | 38 | void BeginSystemFrame(); |
| 39 | void EndSystemFrame(); | 39 | void EndSystemFrame(); |
| @@ -87,7 +87,7 @@ private: | |||
| 87 | 87 | ||
| 88 | class SpeedLimiter { | 88 | class SpeedLimiter { |
| 89 | public: | 89 | public: |
| 90 | using Clock = std::chrono::high_resolution_clock; | 90 | using Clock = std::chrono::steady_clock; |
| 91 | 91 | ||
| 92 | void DoSpeedLimiting(std::chrono::microseconds current_system_time_us); | 92 | void DoSpeedLimiting(std::chrono::microseconds current_system_time_us); |
| 93 | 93 | ||