mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-16 03:08:01 +00:00
contraints -> constraints
This commit is contained in:
parent
acbc70f2a7
commit
70eb97d6b6
1 changed files with 2 additions and 2 deletions
|
|
@ -2896,8 +2896,8 @@ SDL_bool SDL_SetWindowSize(SDL_Window *window, int w, int h)
|
|||
return SDL_InvalidParamError("h");
|
||||
}
|
||||
|
||||
// It is possible for the aspect ratio contraints to not satisfy the size constraints.
|
||||
// The size constraints will override the aspect ratio contraints so we will apply the
|
||||
// It is possible for the aspect ratio constraints to not satisfy the size constraints.
|
||||
// The size constraints will override the aspect ratio constraints so we will apply the
|
||||
// the aspect ratio constraints first
|
||||
float new_aspect = w / (float)h;
|
||||
if (window->max_aspect > 0.0f && new_aspect > window->max_aspect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue