This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
core: fix a typo in the Win32 timer code.
legacy
Sam Hocevar
sam
13 years ago
parent
8a1b15f487
commit
a6841e5334
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/timer.cpp
+ 1
- 1
src/timer.cpp
View File
@@ -110,7 +110,7 @@ private:
#elif defined _WIN32
LARGE_INTEGER tmp;
QueryPerformanceFrequency(&tmp);
return
=
1e3f / tmp.QuadPart;
return 1e3f / tmp.QuadPart;
#elif defined __CELLOS_LV2__
return 1e3f / sys_time_get_timebase_frequency();
#else
Write
Preview
Loading…
Cancel
Save