match last function in d_camera.cpp (#2971)

Co-authored-by: Cuyler36 <Cuyler36@users.noreply.github.com>
This commit is contained in:
roeming
2025-12-19 20:24:18 -05:00
committed by GitHub
parent 2c62444df1
commit f9d69372a1
3 changed files with 3 additions and 3 deletions
-1
View File
@@ -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; }
};