From 1d418a1547bcea8b983815403d0a07b62793a460 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 20 Dec 2015 15:45:53 +0200 Subject: [PATCH] Add missing initializer --- source/input/gesturedetector.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/input/gesturedetector.cpp b/source/input/gesturedetector.cpp index 296aab4..49ddba2 100644 --- a/source/input/gesturedetector.cpp +++ b/source/input/gesturedetector.cpp @@ -265,7 +265,8 @@ GestureDetector::TouchPoint::TouchPoint(): down_x(0), down_y(0), x(0), - y(0) + y(0), + threshold_exceeded(false) { } } // namespace Input -- 2.43.0