From 71b255e5dc6e8c962cbf2ac6bc6efa2876fc8b37 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 27 Mar 2016 19:06:21 +0300 Subject: [PATCH] Use the uint64_t type instead of Uint64 when retrieveing serer time to fix an issue on x64 linux. --- source/Misc/Functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Misc/Functions.cpp b/source/Misc/Functions.cpp index 926b5e26..c133ed3f 100644 --- a/source/Misc/Functions.cpp +++ b/source/Misc/Functions.cpp @@ -122,7 +122,7 @@ CCStr GetServerName() // ------------------------------------------------------------------------------------------------ ULongInt GetTime() { - Uint64 time = 0; + std::uint64_t time = 0; _Func->GetTime(&time); return ULongInt(time); }