mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-09-06 15:17:10 +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:
@@ -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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user