diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-05-16 02:34:20 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-05-16 02:34:20 +0200 |
commit | 5bef54618a2850e42f7bab45120dab9166468a25 (patch) | |
tree | adc5dbbe050488eb0d85b7a38a5c8310dca9ef92 /src/core/core.cpp | |
parent | Merge pull request #6300 from Morph1984/mbedtls (diff) | |
download | yuzu-5bef54618a2850e42f7bab45120dab9166468a25.tar yuzu-5bef54618a2850e42f7bab45120dab9166468a25.tar.gz yuzu-5bef54618a2850e42f7bab45120dab9166468a25.tar.bz2 yuzu-5bef54618a2850e42f7bab45120dab9166468a25.tar.lz yuzu-5bef54618a2850e42f7bab45120dab9166468a25.tar.xz yuzu-5bef54618a2850e42f7bab45120dab9166468a25.tar.zst yuzu-5bef54618a2850e42f7bab45120dab9166468a25.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/core.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 434bf3262..47e70c157 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -289,7 +289,8 @@ struct System::Impl { telemetry_session->AddField(performance, "Shutdown_EmulationSpeed", perf_results.emulation_speed * 100.0); - telemetry_session->AddField(performance, "Shutdown_Framerate", perf_results.game_fps); + telemetry_session->AddField(performance, "Shutdown_Framerate", + perf_results.average_game_fps); telemetry_session->AddField(performance, "Shutdown_Frametime", perf_results.frametime * 1000.0); telemetry_session->AddField(performance, "Mean_Frametime_MS", |