1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Use the uint64_t type instead of Uint64 when retrieveing serer time to fix an issue on x64 linux.

This commit is contained in:
Sandu Liviu Catalin 2016-03-27 19:06:21 +03:00
parent 49c2c46341
commit 71b255e5dc

View File

@ -122,7 +122,7 @@ CCStr GetServerName()
// ------------------------------------------------------------------------------------------------
ULongInt GetTime()
{
Uint64 time = 0;
std::uint64_t time = 0;
_Func->GetTime(&time);
return ULongInt(time);
}