fix s11 idk

This commit is contained in:
Milxnor
2023-04-06 18:27:24 -04:00
parent 0aa6c49580
commit 50ab07dd1f
31 changed files with 642 additions and 235 deletions

View File

@@ -15,6 +15,12 @@ public:
return (float)TruncToInt(F);
}
template< class T >
static constexpr FORCEINLINE T Min(const T A, const T B)
{
return (A <= B) ? A : B;
}
static FORCEINLINE int32 FloorToInt(float F)
{
return TruncToInt(floorf(F));