summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-12-27 18:02:36 -0500
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-12-27 21:32:04 -0500
commitbc1ca84bdcc52eeebe80cd3d713c6b3fbdae1a55 (patch)
tree7f15ad273eeae5467f970c6c925248a06c094d18 /include/SSystem
parentd88201d35f36bc46f43b7ed1b03b786dd0240358 (diff)
Remove fake cSAngle::operator=
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_angle.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/SSystem/SComponent/c_angle.h b/include/SSystem/SComponent/c_angle.h
index 5e2d2d14..6af9560b 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; }
};