diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/timer_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/timer_thread.c b/tests/timer_thread.c index b3a8aa4..2949cf7 100644 --- a/tests/timer_thread.c +++ b/tests/timer_thread.c @@ -14,7 +14,7 @@ static aki_thread_result AKI_THREADCALL test_thread(void *userdata) for (u32 i = 0; i < REPEAT; i++) { diff = (aki_get_tick() - start) * 1000000Lu; aki_thread_sleep(AKI_TS_FROM_USEC(DELAY + ((s64)(i * DELAY) - diff))); - al_printf("[%2u] %lfs\n", i, diff / 1000000.0); + al_printf("[%2u (%llu)] %lfs\n", i, aki_get_timestamp(), diff / 1000000.0); } return 0; } |