Browse Source

Fixed typo.

Camilla Berglund 13 years ago
parent
commit
ae586e65d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cocoa_fullscreen.m

+ 1 - 1
src/cocoa_fullscreen.m

@@ -215,7 +215,7 @@ GLFWvidmode* _glfwPlatformGetVideoModes(int* found)
         mode = (CGDisplayModeRef) CFArrayGetValueAtIndex(modes, i);
         if (modeIsGood(mode))
         {
-            result[*found] vidmodeFromCGDisplayMode(mode);
+            result[*found] = vidmodeFromCGDisplayMode(mode);
             (*found)++;
         }
     }