diff options
| author | 2017-02-19 18:18:26 -0800 | |
|---|---|---|
| committer | 2017-02-26 17:22:03 -0800 | |
| commit | 92c8bd4b1f650438274e50303a6d3f668924d071 (patch) | |
| tree | 0c9e162129dabd2424ee329b51f5765a73f6a494 /src/core/frontend/emu_window.cpp | |
| parent | Add performance statistics to status bar (diff) | |
| download | yuzu-92c8bd4b1f650438274e50303a6d3f668924d071.tar.gz yuzu-92c8bd4b1f650438274e50303a6d3f668924d071.tar.xz yuzu-92c8bd4b1f650438274e50303a6d3f668924d071.zip | |
PerfStats: Add method to get the instantaneous time ratio
Diffstat (limited to 'src/core/frontend/emu_window.cpp')
| -rw-r--r-- | src/core/frontend/emu_window.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/frontend/emu_window.cpp b/src/core/frontend/emu_window.cpp index 6b4637741..b65d6ff58 100644 --- a/src/core/frontend/emu_window.cpp +++ b/src/core/frontend/emu_window.cpp | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <cmath> | 6 | #include <cmath> |
| 7 | #include "common/assert.h" | 7 | #include "common/assert.h" |
| 8 | #include "common/profiler_reporting.h" | 8 | #include "core/core.h" |
| 9 | #include "core/frontend/emu_window.h" | 9 | #include "core/frontend/emu_window.h" |
| 10 | #include "core/frontend/key_map.h" | 10 | #include "core/frontend/key_map.h" |
| 11 | #include "video_core/video_core.h" | 11 | #include "video_core/video_core.h" |
| @@ -104,8 +104,7 @@ void EmuWindow::AccelerometerChanged(float x, float y, float z) { | |||
| 104 | void EmuWindow::GyroscopeChanged(float x, float y, float z) { | 104 | void EmuWindow::GyroscopeChanged(float x, float y, float z) { |
| 105 | constexpr float FULL_FPS = 60; | 105 | constexpr float FULL_FPS = 60; |
| 106 | float coef = GetGyroscopeRawToDpsCoefficient(); | 106 | float coef = GetGyroscopeRawToDpsCoefficient(); |
| 107 | float stretch = | 107 | float stretch = Core::System::GetInstance().perf_stats.Lock()->GetLastFrameTimeScale(); |
| 108 | FULL_FPS / Common::Profiling::GetTimingResultsAggregator()->GetAggregatedResults().fps; | ||
| 109 | std::lock_guard<std::mutex> lock(gyro_mutex); | 108 | std::lock_guard<std::mutex> lock(gyro_mutex); |
| 110 | gyro_x = static_cast<s16>(x * coef * stretch); | 109 | gyro_x = static_cast<s16>(x * coef * stretch); |
| 111 | gyro_y = static_cast<s16>(y * coef * stretch); | 110 | gyro_y = static_cast<s16>(y * coef * stretch); |