Explorar el Código

core: fix a typo in the Win32 timer code.

legacy
Sam Hocevar sam hace 14 años
padre
commit
a6841e5334
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/timer.cpp

+ 1
- 1
src/timer.cpp Ver fichero

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


Cargando…
Cancelar
Guardar