Przeglądaj źródła

core: fix a typo in the Win32 timer code.

legacy
Sam Hocevar sam 14 lat temu
rodzic
commit
a6841e5334
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/timer.cpp

+ 1
- 1
src/timer.cpp Wyświetl plik

@@ -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


Ładowanie…
Anuluj
Zapisz