|
Then just add this:
fgsetbool("sim/initialised",true);
at line 1436 of main.cxx so the function reads like this:
if ( idle_state == 1000 ) { // We've finished all our initialization steps, from now on we // run the main loop. fgsetbool("sim/initialised",true);
fgRegisterIdleHandler(fgMainLoop); } else { if ( fgGetBool("/sim/startup/splash-screen") ) { fgSplashUpdate(0.0, 1.0); } }
I suppose I ought to have done a diff on this, but it seems so trivial.
Giles Robertson
> -----Original Message----- > From: Erik Hofman [mailto:[EMAIL PROTECTED] > Sent: 05 May 2004 08:05 > To: FlightGear developers discussions > Subject: Re: [Flightgear-devel] how to determine when flightgear > hasfullyinitialized > > Seamus Thomas Carroll wrote: > > Hi, > > > > Is there a simple way to test in the code to see if flightgear has > > initialized such as a boolean? > > > Not that I know of, but it would be nice to have one. > That would allow the sound (for example) to be quiet until the startup > is completed. > > Erik > > _______________________________________________ > Flightgear-devel mailing list > [EMAIL PROTECTED] > http://mail.flightgear.org/mailman/listinfo/flightgear-devel |
_______________________________________________ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel
