diff --git a/include/zeus/CVector2f.hpp b/include/zeus/CVector2f.hpp index b06659b..64b71e1 100644 --- a/include/zeus/CVector2f.hpp +++ b/include/zeus/CVector2f.hpp @@ -131,7 +131,7 @@ public: const CVector2f& operator/=(float rhs) { float oorhs = 1.f / rhs; - mSimd /= simd(oorhs); + mSimd *= simd(oorhs); return *this; }