diff -r ed46a265b679 -r 9f7bfc0a1dc3 test/snake.c --- a/test/snake.c Thu Mar 20 20:36:09 2025 +0100 +++ b/test/snake.c Fri Apr 18 19:34:31 2025 +0200 @@ -34,7 +34,7 @@ static uint64_t last_fps = 0; static uint64_t debounce = ASC_NANOS_SECOND - 1; debounce += asc_context.frame_nanos; - // only update text every seconds + // only update text every second if (debounce >= ASC_NANOS_SECOND) { debounce = 0; uint64_t fps = ASC_NANOS_SECOND;