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:
parent
49c2c46341
commit
71b255e5dc
@ -122,7 +122,7 @@ CCStr GetServerName()
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
ULongInt GetTime()
|
||||
{
|
||||
Uint64 time = 0;
|
||||
std::uint64_t time = 0;
|
||||
_Func->GetTime(&time);
|
||||
return ULongInt(time);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user