summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorroeming <brother64youyou@gmail.com>2025-12-19 20:24:18 -0500
committerGitHub <noreply@github.com>2025-12-19 17:24:18 -0800
commitf9d69372a11482a277f7455ba14e1055dc82c86d (patch)
treebc784800c5ccf60b05bd0544f14c2f77a88b5c9e /include/SSystem
parent2c62444df10f84a18430f3b9acb13d7d33a23fb2 (diff)
match last function in d_camera.cpp (#2971)
Co-authored-by: Cuyler36 <Cuyler36@users.noreply.github.com>
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_angle.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/SSystem/SComponent/c_angle.h b/include/SSystem/SComponent/c_angle.h
index b82c9a1d11..40377f4283 100644
--- a/include/SSystem/SComponent/c_angle.h
+++ b/include/SSystem/SComponent/c_angle.h
@@ -52,7 +52,6 @@ public:
bool operator>=(const cSAngle& other) const { return mAngle >= other.mAngle; }
bool operator==(const cSAngle& other) const { return mAngle == other.mAngle; }
operator s16(void) const { return mAngle; }
- void operator=(const cSAngle& other) { mAngle = other.mAngle; }
static inline cSAngle getMaxNegative(void) { return cSAngle((s16)-0x8000); }
inline void mirrorAtMaxNeg(void) { *this = cSAngle((s16)-0x8000) - *this; }
};