mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Fix uninitialized variable warnings (C26495)
This commit is contained in:
parent
089eab96d7
commit
8802f96b7e
30 changed files with 182 additions and 180 deletions
|
@ -54,9 +54,9 @@ private:
|
|||
mutable std::shared_mutex m_time_lock;
|
||||
|
||||
u8 m_time_index = 0;
|
||||
std::array<TimePoint, 256> m_real_times;
|
||||
std::array<TimePoint, 256> m_cpu_times;
|
||||
DT m_time_sleeping;
|
||||
std::array<TimePoint, 256> m_real_times{};
|
||||
std::array<TimePoint, 256> m_cpu_times{};
|
||||
DT m_time_sleeping{};
|
||||
};
|
||||
|
||||
extern PerformanceMetrics g_perf_metrics;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue