Browse Source

Fixed build error with SDK < 10.7

Sam Lantinga 12 years ago
parent
commit
12961352d3
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

@@ -221,7 +221,7 @@ GetWindowStyle(SDL_Window * window)
     [nswindow performSelectorOnMainThread: @selector(toggleFullScreen:) withObject:nswindow waitUntilDone:NO];
     return YES;
 #else
-    return NO
+    return NO;
 #endif /* SDK >= 10.7 */
 }