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

Seconds not milliseconds.

parent fa67a06a
No related branches found
No related tags found
No related merge requests found
Pipeline #7687 failed
......@@ -1157,7 +1157,7 @@ int64_t xp_fast_timer64(void)
cid = CLOCK_MONOTONIC;
if (clock_gettime(cid, &ts) == 0)
ret = ts.tv_sec * 1000;
ret = ts.tv_sec;
else
ret = -1;
#elif defined(_WIN32)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment