Explorar el Código

ps3: fix a bug in the timer code.

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

+ 1
- 1
src/timer.cpp Ver fichero

@@ -86,7 +86,7 @@ private:
#elif defined __CELLOS_LV2__
uint64_t cycles;
SYS_TIMEBASE_GET(cycles);
ret = ms_per_cycle * cycles;
ret = ms_per_cycle * (cycles - cycles0);
if (update)
cycles0 = cycles;
towait = deltams - ret;


Cargando…
Cancelar
Guardar