X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Foptions.cxx;h=1073c5635472bf8ffa5ede6c2b1f25ffdbe52eb9;hb=2cd7473384ec231e2a013b280e83919b98ed2a15;hp=3b442d959df8f3012fd2e807caddb35b620b7aaa;hpb=c78827569a8dccda11f3107a6e0b73d811150621;p=flightgear.git diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 3b442d959..1073c5635 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -530,9 +530,9 @@ parse_option (const string& arg) } else if ( arg == "--enable-mouse-pointer" ) { fgSetString("/sim/startup/mouse-pointer", "enabled"); } else if ( arg == "--disable-freeze" ) { - fgSetBool("/sim/freeze", false); + globals->set_freeze(false); } else if ( arg == "--enable-freeze" ) { - fgSetBool("/sim/freeze", true); + globals->set_freeze(true); } else if ( arg == "--disable-anti-alias-hud" ) { fgSetBool("/sim/hud/antialiased", false); } else if ( arg == "--enable-anti-alias-hud" ) { @@ -802,8 +802,8 @@ parse_option (const string& arg) string name = assign.substr(0, pos); string value = assign.substr(pos + 1); fgSetString(name.c_str(), value); - FG_LOG(FG_GENERAL, FG_INFO, "Setting default value of property " - << name << " to \"" << value << '"'); + // FG_LOG(FG_GENERAL, FG_INFO, "Setting default value of property " + // << name << " to \"" << value << '"'); // $$$ begin - added VS Renganathan, 14 Oct 2K // for multi-window outside window imagery } else if ( arg.find( "--view-offset=" ) != string::npos ) {