Remove fake cSAngle::operator=

This commit is contained in:
LagoLunatic
2025-12-27 18:02:36 -05:00
parent d88201d35f
commit bc1ca84bdc
-3
View File
@@ -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; }
};