Christian Mayer writes:
>
>Norman Vine wrote:
>>  
>> FWIW
>> MingW32 < which uses the MSoft runtime libraries >
>> is blowing up in fgInitSubsystems()
>> in  globals->saveInitialState();
>> at
>> /environment[0]/weather[0]/wind-north-mps[0] wind-north-mps = NaN
>> 
>> 
>> I bet this is a problem spot with MSVC also
>
>I haven't seen it eactly like that. But with one of the FDMs (don't
>remember which) I had a floating point exception in the weather code.
>It's still on the TODO.

Not surprising you wolld need to add my debugging statements :-)

SimGear / simgear / misc / props_io.cxx

bool
copyProperties (const SGPropertyNode *in, SGPropertyNode *out)
{
  bool retval = true;

  SG_LOG( SG_GENERAL, SG_INFO, in->getPath() << " " <<
                  in->getName() << " = " << in->getStringValue() );

                                // First, copy the actual value,
                                // if any.
  if (in->hasValue()) {
    switch (in->getType()) {
    case SGPropertyNode::BOOL:

......

}


Cheers

Norman


_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to