Fix and enable -Wmissing-braces

This commit is contained in:
Cameron Gutman 2023-05-11 00:37:59 -05:00
commit ff046bb707
4 changed files with 15 additions and 13 deletions

View file

@ -132,7 +132,7 @@ namespace input {
touch_port_event { std::move(touch_port_event) },
rumble_queue { std::move(rumble_queue) },
mouse_left_button_timeout {},
touch_port { 0, 0, 0, 0, 0, 0, 1.0f } {}
touch_port { { 0, 0, 0, 0 }, 0, 0, 1.0f } {}
// Keep track of alt+ctrl+shift key combo
int shortcutFlags;