|
Size: 1034
Comment: update content - w/ Sam; remove draft
|
Size: 995
Comment: minor change
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 28: | Line 28: |
| ''You can add useful comments here'' Hints may not be set if there is an existing override hint or environment variable that takes precedence. You can use [[SDL_SetHintWithPriority]]() to set the hint with override priority instead. |
Hints will not be set if there is an existing override hint or environment variable that takes precedence. You can use [[SDL_SetHintWithPriority]]() to set the hint with override priority instead. |
SDL_SetHint
Use this function to set a hint with normal priority.
Contents
Syntax
SDL_bool SDL_SetHint(const char* name,
const char* value)
Function Parameters
name |
the hint to set; see the list of hints on CategoryHints for details |
value |
the value of the hint variable |
Return Value
Returns SDL_TRUE if the hint was set, SDL_FALSE otherwise.
Code Examples
You can add your code example here
Remarks
Hints will not be set if there is an existing override hint or environment variable that takes precedence. You can use SDL_SetHintWithPriority() to set the hint with override priority instead.
