Warnings fix for VS7.0 from Mike Weiblen

This commit is contained in:
Robert Osfield
2004-04-29 21:57:42 +00:00
parent 0af4365d11
commit f7d3f58470

View File

@@ -37,7 +37,7 @@ bool PSU_writeLocalData(const osg::Object &obj, osgDB::Output &fw)
{
const osgParticle::ParticleSystemUpdater &myobj = static_cast<const osgParticle::ParticleSystemUpdater &>(obj);
for (int i=0; i<myobj.getNumParticleSystems(); ++i) {
for (unsigned int i=0; i<myobj.getNumParticleSystems(); ++i) {
fw.writeObject(*myobj.getParticleSystem(i));
}