vec4 operator < seems error (#17072)

* bug fix

* Vec4 operator <
This commit is contained in:
niu2x 2016-12-29 15:26:25 +08:00 committed by minggo
parent 4c5459660b
commit ce4685c64f
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ inline bool Vec4::operator<(const Vec4& v) const
{
if (y == v.y)
{
if (z < v.z)
if (z == v.z)
{
if (w < v.w)
{