diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-03 08:14:21 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-03 12:33:40 -0400 |
commit | 570150bc86c104529a249ccd59f00a492011a9db (patch) | |
tree | 3c5e1d0e2c83edabb1ccd23291f98e3276e2116e /src/core/perf_stats.cpp | |
parent | d767be65bec5a834c4ed8fddc42df4720ec1a167 (diff) |
perf_stats: Make use of designated initializers
Same behavior, but allows us to avoid a now-unnecessary zero
initialization.
Diffstat (limited to 'src/core/perf_stats.cpp')
-rw-r--r-- | src/core/perf_stats.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/core/perf_stats.cpp b/src/core/perf_stats.cpp index 36372c66f0..b899ac8842 100644 --- a/src/core/perf_stats.cpp +++ b/src/core/perf_stats.cpp @@ -95,12 +95,13 @@ PerfStatsResults PerfStats::GetAndResetStats(microseconds current_system_time_us const auto system_us_per_second = (current_system_time_us - reset_point_system_us) / interval; - PerfStatsResults results{}; - results.system_fps = static_cast<double>(system_frames) / interval; - results.game_fps = static_cast<double>(game_frames) / interval; - results.frametime = duration_cast<DoubleSecs>(accumulated_frametime).count() / - static_cast<double>(system_frames); - results.emulation_speed = system_us_per_second.count() / 1'000'000.0; + const PerfStatsResults results{ + .system_fps = static_cast<double>(system_frames) / interval, + .game_fps = static_cast<double>(game_frames) / interval, + .frametime = duration_cast<DoubleSecs>(accumulated_frametime).count() / + static_cast<double>(system_frames), + .emulation_speed = system_us_per_second.count() / 1'000'000.0, + }; // Reset counters reset_point = now; |