1
0
Fork 0

include/Spectre/Math/Vector2.inl: minor fix.

This commit is contained in:
Henrik Hautakoski 2019-05-31 15:50:30 +02:00
parent 0c76494939
commit d1b613058d

View file

@ -98,7 +98,7 @@ inline bool operator>(const Vector2<T>& a, const Vector2<T>& b)
template<typename T>
inline bool operator>=(const Vector2<T>& a, const Vector2<T>& b)
{
return a.x >= b.x && a.y >= b.y
return a.x >= b.x && a.y >= b.y;
}
// ------------------