diff options
Diffstat (limited to 'Minecraft.World/Mth.cpp')
| -rw-r--r-- | Minecraft.World/Mth.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/Mth.cpp b/Minecraft.World/Mth.cpp index 3b5412ad..eccd828e 100644 --- a/Minecraft.World/Mth.cpp +++ b/Minecraft.World/Mth.cpp @@ -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; } |
