1
0
Fork 0

Run a registered event as it's registered and then at the specified interval.

This commit is contained in:
curt 2002-04-12 05:07:28 +00:00
parent f17a6479f7
commit b62fbaf9ce

View file

@ -36,6 +36,8 @@ FGEventMgr::FGEvent::FGEvent( const char* name,
max_time(0),
count(0)
{
if (status == FG_EVENT_READY)
this->run();
}
@ -131,8 +133,6 @@ FGEventMgr::update( int dt )
void
FGEventMgr::Register( const FGEvent& event )
{
// if (event.is_ready())
// event.run();
event_table.push_back( event );
SG_LOG( SG_EVENT, SG_INFO, "Registered event " << event.name()