mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 12:58:13 +05:00
Get rid of MSVC's __int64
Use either int64_t, uint64_t or long long and unsigned long long, defined as per C++11 standard
This commit is contained in:
@@ -17,9 +17,9 @@ public:
|
||||
float passedTime;
|
||||
|
||||
private:
|
||||
__int64 lastMs;
|
||||
__int64 lastMsSysTime;
|
||||
__int64 accumMs;
|
||||
int64_t lastMs;
|
||||
int64_t lastMsSysTime;
|
||||
int64_t accumMs;
|
||||
|
||||
double adjustTime;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user