Converted osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 16:05:47 +00:00
parent d23525889e
commit 40dcc0cd7d
9 changed files with 26 additions and 26 deletions

View File

@@ -43,7 +43,7 @@ void osgParticle::FluidProgram::execute(double dt)
double compenstated_dt = dt;
if (relative_wind.length2() < dt*dt*wind_accel.length2())
{
// osg::notify(osg::NOTICE)<<"** Could be critical: dt="<<dt<<" critical_dt="<<sqrtf(critical_dt2)<<std::endl;
// OSG_NOTICE<<"** Could be critical: dt="<<dt<<" critical_dt="<<sqrtf(critical_dt2)<<std::endl;
double critical_dt2 = relative_wind.length2()/wind_accel.length2();
compenstated_dt = sqrtf(critical_dt2)*0.8f;
}