mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-05-03 01:27:13 +02: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()
|
ULongInt GetTime()
|
||||||
{
|
{
|
||||||
Uint64 time = 0;
|
std::uint64_t time = 0;
|
||||||
_Func->GetTime(&time);
|
_Func->GetTime(&time);
|
||||||
return ULongInt(time);
|
return ULongInt(time);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user