summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/hid/controllers/gesture.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.h b/src/core/hle/service/hid/controllers/gesture.h
index b2bcae2b7..c1578ec25 100644
--- a/src/core/hle/service/hid/controllers/gesture.h
+++ b/src/core/hle/service/hid/controllers/gesture.h
@@ -180,10 +180,10 @@ private:
180 std::unique_ptr<Input::TouchDevice> touch_mouse_device; 180 std::unique_ptr<Input::TouchDevice> touch_mouse_device;
181 std::unique_ptr<Input::TouchDevice> touch_udp_device; 181 std::unique_ptr<Input::TouchDevice> touch_udp_device;
182 std::unique_ptr<Input::TouchDevice> touch_btn_device; 182 std::unique_ptr<Input::TouchDevice> touch_btn_device;
183 std::array<size_t, MAX_FINGERS> mouse_finger_id; 183 std::array<size_t, MAX_FINGERS> mouse_finger_id{};
184 std::array<size_t, MAX_FINGERS> keyboard_finger_id; 184 std::array<size_t, MAX_FINGERS> keyboard_finger_id{};
185 std::array<size_t, MAX_FINGERS> udp_finger_id; 185 std::array<size_t, MAX_FINGERS> udp_finger_id{};
186 std::array<Finger, MAX_POINTS> fingers; 186 std::array<Finger, MAX_POINTS> fingers{};
187 GestureProperties last_gesture{}; 187 GestureProperties last_gesture{};
188 s64_le last_update_timestamp{}; 188 s64_le last_update_timestamp{};
189 s64_le last_tap_timestamp{}; 189 s64_le last_tap_timestamp{};