Fix broken build due to undef'd ref in test_flightplan
This commit is contained in:
parent
327f59a105
commit
7d12c9fe36
1 changed files with 8 additions and 0 deletions
|
@ -104,6 +104,14 @@ bool FGScenery::get_elevation_m(const SGGeod& geod, double& alt,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool FGScenery::get_cart_ground_intersection(const SGVec3d& start, const SGVec3d& dir,
|
||||||
|
SGVec3d& nearestHit,
|
||||||
|
const osg::Node* butNotFrom)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
namespace flightgear
|
namespace flightgear
|
||||||
{
|
{
|
||||||
MessageBoxResult modalMessageBox(const std::string& caption,
|
MessageBoxResult modalMessageBox(const std::string& caption,
|
||||||
|
|
Loading…
Reference in a new issue