Minor CSfxManager fixes and renames

This commit is contained in:
2024-10-12 19:29:07 -07:00
parent 8768673d18
commit 5b5c114bb6
7 changed files with 20 additions and 18 deletions

View File

@@ -68,7 +68,7 @@ inline int FtoL(float in) { return static_cast< int >(in); }
inline float LtoF(int in) { return static_cast< float >(in); }
inline float ToReal32(int in) { return static_cast< float >(in); }
inline int ToInt32(float in) { return static_cast< int >(in); }
inline unsigned short ToUint16(unsigned short in) { return static_cast< short >(in); }
inline unsigned short ToUint16(short in) { return static_cast<unsigned short >(in); }
inline char ToChar(int c) { return ToUint8(c); }
} // namespace CCast