From 52be44d6215693c88b4737cdc9de2067709e246d Mon Sep 17 00:00:00 2001 From: SamGondelman Date: Tue, 4 Aug 2015 14:50:38 -0700 Subject: [PATCH] uninitialized value --- interface/src/scripting/ControllerScriptingInterface.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/scripting/ControllerScriptingInterface.cpp b/interface/src/scripting/ControllerScriptingInterface.cpp index 7a3f4a99b5..feceecc3fd 100644 --- a/interface/src/scripting/ControllerScriptingInterface.cpp +++ b/interface/src/scripting/ControllerScriptingInterface.cpp @@ -24,7 +24,8 @@ ControllerScriptingInterface::ControllerScriptingInterface() : _mouseCaptured(false), _touchCaptured(false), - _wheelCaptured(false) + _wheelCaptured(false), + _actionsCaptured(false) { }