@@ -50,9 +50,9 @@ int Mth::floor(float v)
|
||||
return v < i ? i - 1 : i;
|
||||
}
|
||||
|
||||
int64_t Mth::lfloor(double v)
|
||||
__int64 Mth::lfloor(double v)
|
||||
{
|
||||
int64_t i = (int64_t) v;
|
||||
__int64 i = (__int64) v;
|
||||
return v < i ? i - 1 : i;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user