From bb9b4c83af12647df1db7978347bd297dda3277b Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sun, 23 May 2021 11:52:00 -0700 Subject: [PATCH] Fix incorrect division operator --- include/zeus/CVector2f.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }