mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 00:25:19 +02:00
Change i++ to ++i
This commit is contained in:
@@ -288,7 +288,7 @@ void ParticleSpawner::step(float dtime, ClientEnvironment* env)
|
||||
}
|
||||
else
|
||||
{
|
||||
i++;
|
||||
++i;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -360,7 +360,7 @@ void ParticleManager::stepSpawners (float dtime)
|
||||
else
|
||||
{
|
||||
i->second->step(dtime, m_env);
|
||||
i++;
|
||||
++i;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -380,7 +380,7 @@ void ParticleManager::stepParticles (float dtime)
|
||||
else
|
||||
{
|
||||
(*i)->step(dtime);
|
||||
i++;
|
||||
++i;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user