diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-05-22 15:02:22 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-05-22 15:02:22 -0400 |
| commit | 9ad35cc986aadce3ae885223ea56031533acb197 (patch) | |
| tree | 82826001d085c632d7673fc45baa1cf10f093bc6 /Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp | |
| parent | ad9dae30a850cb31576f01ab80441e79d630f345 (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.cpp | 2 |
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); } |
