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
No related branches found
No related tags found
No related merge requests found
Pipeline #7692 passed
......@@ -1155,7 +1155,7 @@ int64_t xp_fast_timer64(void)
else
ret = -1;
#elif defined(_WIN32)
#if _WIN32_WINNT < _WIN32_WINNT_VISTA
#if WINVER < 0x0600
ret=GetTickCount() / 1000;
#else
ret=GetTickCount64() / 1000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment