From bc1ca84bdcc52eeebe80cd3d713c6b3fbdae1a55 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Sat, 27 Dec 2025 18:02:36 -0500 Subject: [PATCH] Remove fake cSAngle::operator= --- include/SSystem/SComponent/c_angle.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/SSystem/SComponent/c_angle.h b/include/SSystem/SComponent/c_angle.h index 5e2d2d14e..6af9560bf 100644 --- a/include/SSystem/SComponent/c_angle.h +++ b/include/SSystem/SComponent/c_angle.h @@ -51,9 +51,6 @@ public: bool operator<(const cSAngle& other) const { return mAngle < other.mAngle; } bool operator>(const cSAngle& other) const { return mAngle > other.mAngle; } operator s16() const { return mAngle; } -#ifdef __MWERKS__ - void operator=(const cSAngle& other) { mAngle = other.mAngle; } -#endif static inline cSAngle getMaxNegative() { return cSAngle((s16)-0x8000); } inline void mirrorAtMaxNeg() { *this = cSAngle((s16)-0x8000) - *this; } };