Reversed operator in SortLifetime fixing #29440

This commit is contained in:
SamSindt 2019-06-06 12:49:48 -07:00
parent 197b65f32a
commit 6a23eff748
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ private:
const Particle *particles;
bool operator()(int p_a, int p_b) const {
return particles[p_a].time < particles[p_b].time;
return particles[p_a].time > particles[p_b].time;
}
};