From: mfranz Date: Thu, 28 Jun 2007 19:23:57 +0000 (+0000) Subject: make it nicer & shorter :-) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8c3f03ae035c9ce86452211db4d0dff60177c024;p=flightgear.git make it nicer & shorter :-) --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index a32745ce3..80489d4c1 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -1416,11 +1416,9 @@ set_property(const string& arg) type = name.substr(0, pos); name = name.substr(pos + 1); } - if (type == "s" || type == "string") { - fgSetString(name.c_str(), value.c_str()); - return true; - } - if (type == "d" || type == "double") + if (type == "s" || type == "string") + ; + else if (type == "d" || type == "double") fgSetDouble(name.c_str(), 0.0); else if (type == "f" || type == "float") fgSetFloat(name.c_str(), 0.0f);