diff -r 24b0f47f619c -r 4df350dac84f src/util.c --- a/src/util.c Sun Jan 25 13:18:26 2026 +0100 +++ b/src/util.c Sun Jan 25 13:49:49 2026 +0100 @@ -41,7 +41,7 @@ uint32_t asc_util_rand(uint32_t n) { if (n > INT32_MAX) { - // TODO: this probably uses quality of the generated numbers + // TODO: this likely reduces the quality of the generated numbers return SDL_rand_bits() % n; } else { return SDL_rand((int32_t) n);