mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix uninitialized variable warnings (C26495)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user