2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

perf_stats: Resolve implicit int to double conversion error

We simply need to turn the literal argument to std::accumulate into a
double, rather than an int.
This commit is contained in:
Lioncash 2019-11-12 05:28:47 -05:00
parent 23878bf360
commit 75dec14f21

View file

@ -81,7 +81,7 @@ double PerfStats::GetMeanFrametime() {
return 0;
}
const double sum = std::accumulate(perf_history.begin() + IgnoreFrames,
perf_history.begin() + current_index, 0);
perf_history.begin() + current_index, 0.0);
return sum / (current_index - IgnoreFrames);
}