Explorar o código

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.
Anonymous Maarten %!s(int64=3) %!d(string=hai) anos
pai
achega
f2a277414f
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/video/raspberry/SDL_rpivideo.c

+ 2 - 2
src/video/raspberry/SDL_rpivideo.c

@@ -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;