diff options
| author | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-06-25 01:50:09 -0400 |
|---|---|---|
| committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-06-25 01:50:09 -0400 |
| commit | 7738b8b0e056b0eebd2e4238b1cf2671fc177e87 (patch) | |
| tree | ae1acc1ad529cd52e0dfaa659faf0e3d2ccd6a55 /Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp | |
| parent | c5c86d17dc5f8fcb4421a9e745b443ea33f143c4 (diff) | |
| parent | 54e1b58199e9f11e9d8015777ebfcd53c86d485d (diff) | |
Merge branch 'expression-parser-fixes'
Diffstat (limited to 'Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp')
| -rw-r--r-- | Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp b/Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp index 91c275e71b..a259f303c8 100644 --- a/Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp +++ b/Source/Core/InputCommon/Src/ControllerInterface/ExpressionParser.cpp @@ -98,12 +98,12 @@ public: while (it != expr.end()) { char c = *it; + it++; if (c == '`') return false; if (c > 0 && c == otherDelim) return true; value += c; - it++; } return false; } |
