Fixed Vector3::sort_min_max()

This commit is contained in:
Marc Gilleron 2016-05-10 02:46:33 +02:00
parent 5662dfde7b
commit fc6172635a

View File

@ -101,7 +101,7 @@ private:
if (a > b) {
int temp = a;
a = b;
b = a;
b = temp;
}
}