1
0
Fork 0

Minor error message improvement.

This commit is contained in:
ThorstenB 2012-09-05 00:00:25 +02:00
parent 6745d27691
commit 1dbc2c83e5

View file

@ -80,12 +80,12 @@ FGAircraftModel::init ()
} catch (const sg_exception &ex) {
SG_LOG(SG_AIRCRAFT, SG_ALERT, "Failed to load aircraft from " << path << ':');
SG_LOG(SG_AIRCRAFT, SG_ALERT, " " << ex.getFormattedMessage());
SG_LOG(SG_AIRCRAFT, SG_ALERT, "(Falling back to glider.ac.)");
}
}
if (!model)
{
SG_LOG(SG_AIRCRAFT, SG_ALERT, "(Falling back to glider.ac.)");
model = fgLoad3DModelPanel( "Models/Geometry/glider.ac",
globals->get_props());
}