Hi James, 

Ok, found the abort almost immediately ;=))

in options.cxx, void Options::init(...)

Simple -
 std::string homedir(getenv("HOME"));
is a NO NO...

In windows getenv("HOME") will yield a null = (0),
and it is a logic error to do -
 std::string homedir(0);

Changed that to -
 std::string homedir;
 char *hd = getenv("HOME");
 if (hd)
    homedir = hd;

And I am up and flying...

This does mean no <homedir>.fgfsrc is ever 
processed in windows, but will take longer to 
sort that out...

Now get console output -
Enabling ATI viewport hack
KMA20 audio panel initialized
KI266 dme indicator #0 initialized
loading scenario 'nimitz_demo'
Could not find at least one of the following objects for animation:
'terminal_2'
Could not find at least one of the following objects for animation:
'terminal_2'
Electrical system initialized
KAP140 power up
Error in ground network. Failed to find first waypoint: 0 at KSMF

And the c172p starts and FLIES ;=))))

Regards,
Geoff.



------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to