stdinc: Added missing `\param` to SDL_CreateEnvironment.

This commit is contained in:
Ryan C. Gordon 2024-09-14 16:17:29 -04:00
parent 35427ff9ec
commit 919f8d3e2b
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 3 additions and 1 deletions

View File

@ -1032,7 +1032,9 @@ extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_GetEnvironment(void);
extern SDL_DECLSPEC void SDLCALL SDL_CleanupEnvironment(void);
/**
* Create a set of environment variables
* Create a set of environment variables.
*
* \param populated SDL_TRUE to initialize it from the C runtime environment, SDL_FALSE to create an empty environment.
*
* \returns a pointer to the new environment or NULL on failure; call
* SDL_GetError() for more information.