Sync SDL3 wiki -> header

[ci skip]
This commit is contained in:
SDL Wiki Bot
2025-02-13 01:45:34 +00:00
parent 3be67ced64
commit 041894a523

View File

@@ -4243,14 +4243,14 @@ extern SDL_DECLSPEC int SDLCALL SDL_vasprintf(char **strp, SDL_PRINTF_FORMAT_STR
/** /**
* Seeds the pseudo-random number generator. * Seeds the pseudo-random number generator.
* *
* Reusing the seed number will cause SDL_rand_*() to repeat the same stream * Reusing the seed number will cause SDL_rand() to repeat the same stream of
* of 'random' numbers. * 'random' numbers.
* *
* \param seed the value to use as a random number seed, or 0 to use * \param seed the value to use as a random number seed, or 0 to use
* SDL_GetPerformanceCounter(). * SDL_GetPerformanceCounter().
* *
* \threadsafety This should be called on the same thread that calls * \threadsafety This should be called on the same thread that calls
* SDL_rand*() * SDL_rand()
* *
* \since This function is available since SDL 3.2.0. * \since This function is available since SDL 3.2.0.
* *