From: curt Date: Sat, 29 Dec 2007 21:51:39 +0000 (+0000) Subject: Return the --fov= to it's original functionality. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9f9d2f934a8081b09058828122e5f536a4913f8e;p=flightgear.git Return the --fov= to it's original functionality. --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 73af0ebc5..50c104b02 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -494,7 +494,7 @@ parse_fov( const string& arg ) { if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; } if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; } - fgSetDouble("/sim/current-view/field-of-view", fov); + fgSetDouble("/sim/view[0]/config/default-field-of-view-deg", fov); // printf("parse_fov(): result = %.4f\n", fov);