mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
@ -232,8 +232,8 @@ public:
|
||||
void LoadDefaults(const ControllerInterface& ciface) override;
|
||||
|
||||
private:
|
||||
std::array<ControllerEmu::Buttons*, NUM_HOTKEY_GROUPS> m_keys;
|
||||
std::array<ControllerEmu::ControlGroup*, NUM_HOTKEY_GROUPS> m_hotkey_groups;
|
||||
std::array<ControllerEmu::Buttons*, NUM_HOTKEY_GROUPS> m_keys{};
|
||||
std::array<ControllerEmu::ControlGroup*, NUM_HOTKEY_GROUPS> m_hotkey_groups{};
|
||||
};
|
||||
|
||||
namespace HotkeyManagerEmu
|
||||
|
Reference in New Issue
Block a user