mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
@ -31,7 +31,7 @@ public:
|
||||
OPTION_INTEGER,
|
||||
};
|
||||
|
||||
bool m_bool_value;
|
||||
bool m_bool_value = false;
|
||||
|
||||
std::vector<float> m_float_values;
|
||||
std::vector<s32> m_integer_values;
|
||||
@ -45,12 +45,12 @@ public:
|
||||
std::vector<float> m_float_step_values;
|
||||
std::vector<s32> m_integer_step_values;
|
||||
|
||||
OptionType m_type;
|
||||
OptionType m_type = OptionType::OPTION_BOOL;
|
||||
|
||||
std::string m_gui_name;
|
||||
std::string m_option_name;
|
||||
std::string m_dependent_option;
|
||||
bool m_dirty;
|
||||
bool m_dirty = false;
|
||||
};
|
||||
|
||||
using ConfigMap = std::map<std::string, ConfigurationOption>;
|
||||
|
Reference in New Issue
Block a user