diff --git a/r5dev/mathlib/vector.h b/r5dev/mathlib/vector.h index 538b4456..981ddfb9 100644 --- a/r5dev/mathlib/vector.h +++ b/r5dev/mathlib/vector.h @@ -165,9 +165,9 @@ public: inline bool IsZeroFast() const RESTRICT { static_assert(sizeof(vec_t) == sizeof(int)); - return (*reinterpret_cast(&x) == 0 && - *reinterpret_cast(&y) == 0 && - *reinterpret_cast(&z) == 0); + return (*(int*)(&x) == 0 && + *(int*)(&y) == 0 && + *(int*)(&z) == 0); } vec_t NormalizeInPlace(); ///< Normalize all components