Ver código fonte

CIS FIX : timer fix, sam should fix it.

legacy
Benjamin ‘Touky’ Huet touky 12 anos atrás
pai
commit
5ac828fd23
1 arquivos alterados com 2 adições e 1 exclusões
  1. +2
    -1
      src/sys/timer.cpp

+ 2
- 1
src/sys/timer.cpp Ver arquivo

@@ -88,11 +88,12 @@ private:
{
if (seconds > 5e-4f)
Sleep((int)(seconds * 1e3f + 0.5f));
return .0f; /* FIXME */
}

static float GetSecondsPerCycle()
{
LARGE_INTEGER tmp
LARGE_INTEGER tmp;
QueryPerformanceFrequency(&tmp);
return 1.f / tmp.QuadPart;
}


Carregando…
Cancelar
Salvar