Use TickCount64 instead of TickCount

This commit is contained in:
EntenKoeniq
2021-11-19 22:08:15 +01:00
parent 6f4544d947
commit 8fc16725ff
8 changed files with 44 additions and 41 deletions

View File

@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
@ -95,7 +94,7 @@ namespace CoopClient
public static bool IsPlayerListVisible()
{
return Environment.TickCount - PlayerList.Pressed < 5000;
return Util.GetTickCount64() - PlayerList.Pressed < 5000;
}
public static string GetCurrentVersion()