Переглянути джерело

ps3: fix a bug in the timer code.

legacy
Sam Hocevar sam 13 роки тому
джерело
коміт
328af22a5f
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      src/timer.cpp

+ 1
- 1
src/timer.cpp Переглянути файл

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


Завантаження…
Відмінити
Зберегти