Browse Source

wayland: Compare against the old scale when resizing

Compare against the old scale instead of the new or the conditional will always be true.
Frank Praznik 2 years ago
parent
commit
768b6728bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/wayland/SDL_waylandwindow.c

+ 1 - 1
src/video/wayland/SDL_waylandwindow.c

@@ -2109,7 +2109,7 @@ Wayland_HandleResize(SDL_Window *window, int width, int height, float scale)
     SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
     SDL_VideoData *viddata = data->waylandData;
     int old_w = window->w, old_h = window->h;
-    float old_scale = scale;
+    float old_scale = data->scale_factor;
 
     /* Update the window geometry. */
     window->w = width;