Fixed Error in operators

This commit is contained in:
Robert 2020-06-26 14:25:47 +02:00
parent f86246eca5
commit 171c582225

View file

@ -65,7 +65,7 @@ namespace sf
Vector2& operator*=(T right)
{
x *= right;
y *= left;
y *= right;
return this;
}
@ -77,7 +77,7 @@ namespace sf
Vector2& operator/=(T right)
{
x /= right;
y /= left;
y /= right;
return this;
}
};