Skip to content
Snippets Groups Projects
Commit b02975d7 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Hard-code the _WIN32_WINNT_VISTA value.

Maybe Borland is also using pre-vista headers?
parent 68dffbe2
Branches
Tags
No related merge requests found
Pipeline #7692 passed
...@@ -1155,7 +1155,7 @@ int64_t xp_fast_timer64(void) ...@@ -1155,7 +1155,7 @@ int64_t xp_fast_timer64(void)
else else
ret = -1; ret = -1;
#elif defined(_WIN32) #elif defined(_WIN32)
#if _WIN32_WINNT < _WIN32_WINNT_VISTA #if WINVER < 0x0600
ret=GetTickCount() / 1000; ret=GetTickCount() / 1000;
#else #else
ret=GetTickCount64() / 1000; ret=GetTickCount64() / 1000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment