raspberry: SDL_DisplayMode's w/h members have been renamed to screen_w/screen_h

Found by running the coccinelle script on SDL's source tree.
main
Anonymous Maarten 2023-02-24 12:14:32 +01:00 committed by Sam Lantinga
parent 936a51d5cc
commit f2a277414f
1 changed files with 2 additions and 2 deletions

View File

@ -245,8 +245,8 @@ int RPI_CreateWindow(_THIS, SDL_Window *window)
displaydata = display->driverdata;
/* Windows have one size for now */
window->w = display->desktop_mode.w;
window->h = display->desktop_mode.h;
window->w = display->desktop_mode.screen_w;
window->h = display->desktop_mode.screen_h;
/* OpenGL ES is the law here, buddy */
window->flags |= SDL_WINDOW_OPENGL;