mirror of
https://github.com/zeldaret/tp
synced 2026-07-09 06:53:23 -04:00
match last function in d_camera.cpp (#2971)
Co-authored-by: Cuyler36 <Cuyler36@users.noreply.github.com>
This commit is contained in:
@@ -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; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user