Commit 9d7b26155a59cdfb7de0d7cba5ed59402762f0ee

Alex Szpakowski 2019-04-17T20:14:40

macOS: Fix compilation when using the 10.9 SDK or older.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/video/cocoa/SDL_cocoaopengl.m b/src/video/cocoa/SDL_cocoaopengl.m
index f4acd62..c014308 100644
--- a/src/video/cocoa/SDL_cocoaopengl.m
+++ b/src/video/cocoa/SDL_cocoaopengl.m
@@ -322,7 +322,7 @@ Cocoa_GL_CreateContext(_THIS, SDL_Window * window)
 
     /* vsync is handled separately by synchronizing with a display link. */
     interval = 0;
-    [context setValues:&interval forParameter:NSOpenGLContextParameterSwapInterval];
+    [context setValues:&interval forParameter:NSOpenGLCPSwapInterval];
 
     if ( Cocoa_GL_MakeCurrent(_this, window, context) < 0 ) {
         Cocoa_GL_DeleteContext(_this, context);