1
0
Fork 0

Fix a couple of stupid mistakes, I'm off to find a brown paper bag now.

This commit is contained in:
ehofman 2005-05-03 12:48:31 +00:00
parent a4eebe4277
commit a760869475

View file

@ -556,10 +556,9 @@ FGDialog::setupObject (puObject * object, SGPropertyNode * props)
if ( SGPropertyNode *nft = props->getNode("font", false) ) {
SGPath path( _font_path );
string name = props->getStringValue("name");
float size = props->getFloatValue("size", 13.0);
float slant = props->getFloatValue("slant", 0.0);
if ( name.empty() ) name = "typewriter";
const char *name = nft->getStringValue("name", "default");
float size = nft->getFloatValue("size", 13.0);
float slant = nft->getFloatValue("slant", 0.0);
path.append( name );
path.concat( ".txf" );