1
0
Fork 0

It can't be turned off, so force the running flag to true to avoid an

uninitialization stupidity.
This commit is contained in:
andy 2004-05-01 04:59:09 +00:00
parent a3ba94c39e
commit 0bd25eb082

View file

@ -46,6 +46,7 @@ void TurbineEngine::integrate(float dt)
void TurbineEngine::calc(float pressure, float temp, float omega)
{
_running = true;
_omega = omega;
_rho = Atmosphere::calcStdDensity(pressure, temp);