summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-05-22 15:02:22 -0400
committerLioncash <mathew1800@gmail.com>2015-05-22 15:02:22 -0400
commit9ad35cc986aadce3ae885223ea56031533acb197 (patch)
tree82826001d085c632d7673fc45baa1cf10f093bc6 /Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
parentad9dae30a850cb31576f01ab80441e79d630f345 (diff)
ExpressionParser: Add missing break in UnaryExpression value setting
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
index b49d4b8dce..921e8d64f3 100644
--- a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
@@ -357,6 +357,8 @@ public:
{
case TOK_NOT:
inner->SetValue(1.0 - value);
+ break;
+
default:
assert(false);
}