Fix a small (but potentially confusing) spelling error.
This commit is contained in:
parent
de27ab5bf7
commit
ae939e2e44
2 changed files with 3 additions and 3 deletions
|
@ -198,8 +198,8 @@ TGAptSurface::TGAptSurface( const string& path,
|
|||
SG_LOG( SG_GENERAL, SG_DEBUG,
|
||||
"Area size = " << y_m << " x " << x_m << " (m)" );
|
||||
|
||||
int xdivs = (int)(x_m / course_grid) + 1;
|
||||
int ydivs = (int)(y_m / course_grid) + 1;
|
||||
int xdivs = (int)(x_m / coarse_grid) + 1;
|
||||
int ydivs = (int)(y_m / coarse_grid) + 1;
|
||||
|
||||
if ( xdivs < 3 ) { xdivs = 3; }
|
||||
if ( ydivs < 3 ) { ydivs = 3; }
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
extern int nudge;
|
||||
|
||||
// Final grid size for airport surface (in meters)
|
||||
const double course_grid = 700.0;
|
||||
const double coarse_grid = 700.0;
|
||||
|
||||
// compared to the average surface elevation, clamp all values within
|
||||
// this many meters of the average
|
||||
|
|
Loading…
Reference in a new issue