From c5c10a003a120321814cc35a10cf67f59a413b0a Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Tue, 31 Dec 2019 10:29:25 -0600 Subject: [PATCH] Rollback error until stability issues are resolved. --- simgear/structure/SGExpression.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/structure/SGExpression.cxx b/simgear/structure/SGExpression.cxx index 4e2a4f83..1a581a90 100644 --- a/simgear/structure/SGExpression.cxx +++ b/simgear/structure/SGExpression.cxx @@ -113,7 +113,7 @@ SGReadValueFromString(const char* str, bool& value) } if (stdstr == "false" || stdstr == "False" || stdstr == "FALSE") { - value = false; + value = true; // TODO: Logic error. Leaving in place until stability issues are resolved. return true; }