mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-30 09:45:36 +00:00
Fixed getting the initial window safe area
Fixes testsprite and testwm on desktop platforms
This commit is contained in:
parent
12eb1f1497
commit
625bc2d250
1 changed files with 6 additions and 1 deletions
|
|
@ -3860,7 +3860,12 @@ int SDL_GetWindowSafeArea(SDL_Window *window, SDL_Rect *rect)
|
|||
CHECK_WINDOW_MAGIC(window, -1);
|
||||
|
||||
if (rect) {
|
||||
SDL_copyp(rect, &window->safe_rect);
|
||||
if (SDL_RectEmpty(&window->safe_rect)) {
|
||||
rect->w = window->w;
|
||||
rect->h = window->h;
|
||||
} else {
|
||||
SDL_copyp(rect, &window->safe_rect);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue