Update GetTickCount to GetTickCount64

This commit is contained in:
GabsPuNs
2026-04-11 10:06:31 -04:00
parent 720efd2f2e
commit 6be56e5786
8 changed files with 29 additions and 29 deletions

View File

@@ -831,7 +831,7 @@ void CPlatformNetworkManagerStub::TickSearch()
return;
static DWORD lastSearchTime = 0;
DWORD now = GetTickCount();
DWORD now = GetTickCount64();
if (now - lastSearchTime < 2000)
return;
lastSearchTime = now;