Fix incorrect division operator

This commit is contained in:
Phillip Stephens 2021-05-23 11:52:00 -07:00
parent 9130bf977e
commit bb9b4c83af
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public:
const CVector2f& operator/=(float rhs) {
float oorhs = 1.f / rhs;
mSimd /= simd<float>(oorhs);
mSimd *= simd<float>(oorhs);
return *this;
}