Fixed build

This commit is contained in:
Sam Lantinga 2024-08-13 07:39:43 -07:00
parent 586a2dc721
commit 70890b175e
1 changed files with 2 additions and 1 deletions

View File

@ -1591,7 +1591,8 @@ int KMSDRM_CreateWindow(_THIS, SDL_Window *window)
/* Tell the app that the window has moved to top-left. */ /* Tell the app that the window has moved to top-left. */
{ {
SDL_Rect display_bounds; SDL_Rect display_bounds;
SDL_GetDisplayBounds(SDL_GetDisplayForWindow(window), &display_bounds); SDL_zero(display_bounds);
SDL_GetDisplayBounds(SDL_GetWindowDisplayIndex(window), &display_bounds);
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, display_bounds.x, display_bounds.y); SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, display_bounds.x, display_bounds.y);
} }