mirror of
https://github.com/AxioDL/zeus.git
synced 2025-12-09 05:27:56 +00:00
Fix incorrect division operator
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user