Skip to content
Snippets Groups Projects
Commit 7771f87e authored by rswindell's avatar rswindell
Browse files

Fix Deuce's typo as reported by toolman.

parent 5e24a11d
No related branches found
No related tags found
No related merge requests found
......@@ -516,7 +516,7 @@ long double DLLCALL xp_timer(void)
#else
/* In MSVC, a long double does NOT have 19 decimals of precision */
ret=(((long double)(tick.QuadPart%freq.QuadPart))/freq.QuadPart);
ret+=((long long int)(tick.QuadPart/freq.QuadPart))
ret+=((long long int)(tick.QuadPart/freq.QuadPart));
#endif
}
else {
......
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