Debug and various d_ev_camera fixes (#2448)

This commit is contained in:
YunataSavior
2025-05-19 08:40:57 -07:00
committed by GitHub
parent 75443954d4
commit 9ffb52027a
8 changed files with 679 additions and 706 deletions
+1
View File
@@ -44,6 +44,7 @@ public:
bool operator>(const cSAngle& other) const { return mAngle > other.mAngle; }
bool operator<=(const cSAngle& other) const { return mAngle <= other.mAngle; }
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); }