MapWidget: fix a crash on uninitialized.
This commit is contained in:
parent
0750d8a6d4
commit
3419b28919
1 changed files with 6 additions and 6 deletions
|
@ -532,11 +532,6 @@ void MapWidget::draw(int dx, int dy)
|
||||||
double julianDate = globals->get_time_params()->getJD();
|
double julianDate = globals->get_time_params()->getJD();
|
||||||
_magVar->update(_projectionCenter, julianDate);
|
_magVar->update(_projectionCenter, julianDate);
|
||||||
|
|
||||||
SGGeod topLeft = unproject(SGVec2d(_width/2, _height/2));
|
|
||||||
// compute draw range, including a fudge factor for ILSs and other 'long'
|
|
||||||
// symbols
|
|
||||||
_drawRangeNm = SGGeodesy::distanceNm(_projectionCenter, topLeft) + 10.0;
|
|
||||||
|
|
||||||
bool aircraftUp = _root->getBoolValue("aircraft-heading-up");
|
bool aircraftUp = _root->getBoolValue("aircraft-heading-up");
|
||||||
if (aircraftUp) {
|
if (aircraftUp) {
|
||||||
_upHeading = fgGetDouble("/orientation/heading-deg");
|
_upHeading = fgGetDouble("/orientation/heading-deg");
|
||||||
|
@ -544,6 +539,11 @@ void MapWidget::draw(int dx, int dy)
|
||||||
_upHeading = 0.0;
|
_upHeading = 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SGGeod topLeft = unproject(SGVec2d(_width/2, _height/2));
|
||||||
|
// compute draw range, including a fudge factor for ILSs and other 'long'
|
||||||
|
// symbols
|
||||||
|
_drawRangeNm = SGGeodesy::distanceNm(_projectionCenter, topLeft) + 10.0;
|
||||||
|
|
||||||
// drawing operations
|
// drawing operations
|
||||||
GLint sx = (int) abox.min[0],
|
GLint sx = (int) abox.min[0],
|
||||||
sy = (int) abox.min[1];
|
sy = (int) abox.min[1];
|
||||||
|
|
Loading…
Add table
Reference in a new issue