Browse Source

Fixes an issue introduced via #5573 when building for i686

Mirko Galimberti 3 years ago
parent
commit
b293888c7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/cocoa/SDL_cocoawindow.m

+ 1 - 1
src/video/cocoa/SDL_cocoawindow.m

@@ -2210,7 +2210,7 @@ int Cocoa_GetWindowDisplayIndex(_THIS, SDL_Window * window){
      instead of checking in which display the window is placed, we should check which SDL display matches the display described
      instead of checking in which display the window is placed, we should check which SDL display matches the display described
      via displayframe.
      via displayframe.
     */
     */
-    CGRect displayframe = data->nswindow.screen.frame;
+    NSRect displayframe = data->nswindow.screen.frame;
     SDL_Point display_center;
     SDL_Point display_center;
     SDL_Rect sdl_display_rect;
     SDL_Rect sdl_display_rect;