Browse Source

core: fix a typo in the Win32 timer code.

legacy
Sam Hocevar sam 13 years ago
parent
commit
a6841e5334
1 changed files with 1 additions and 1 deletions
  1. +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


Loading…
Cancel
Save