2
0
Эх сурвалжийг харах

Updated debug print with new SDL_DisplayMode fields

Sam Lantinga 2 жил өмнө
parent
commit
7905254087

+ 2 - 1
src/video/x11/SDL_x11modes.c

@@ -226,7 +226,8 @@ static SDL_bool SetXRandRModeInfo(Display *display, XRRScreenResources *res, RRC
             mode->refresh_rate = CalculateXRandRRefreshRate(info);
             ((SDL_DisplayModeData *)mode->driverdata)->xrandr_mode = modeID;
 #ifdef X11MODES_DEBUG
-            printf("XRandR mode %d: %dx%d@%dHz\n", (int)modeID, mode->w, mode->h, mode->refresh_rate);
+            printf("XRandR mode %d: %dx%d@%dHz\n", (int)modeID,
+                   mode->screen_w, mode->screen_h, mode->refresh_rate);
 #endif
             return SDL_TRUE;
         }