1
0
Fork 0

src/Aircraft/replay-internal.cxx: removed stray diagnostic in prev commit.

This commit is contained in:
Julian Smith 2022-02-19 12:40:58 +00:00
parent 2d53280fba
commit 076d0816b5

View file

@ -1114,13 +1114,7 @@ FGReplayInternal::update( double dt )
if (m_simple_time_enabled->getBoolValue())
{
double new_sim_time = globals->get_subsystem<TimeManager>()->getMPProtocolClockSec();
SG_LOG( SG_GENERAL, SG_ALERT,
"m_sim_time=" << m_sim_time
<< " new_sim_time=" << new_sim_time <<
" new_sim_time <= m_sim_time=" << (new_sim_time <= m_sim_time)
);
m_sim_time = new_sim_time;
m_sim_time = globals->get_subsystem<TimeManager>()->getMPProtocolClockSec();
}
else
{