Fixed loop termination bug.

master
Camilla Berglund ago%!(EXTRA string=15 years)
parent 3a755b99d0
commit 06a4afd7de
  1. 2
      src/cocoa/cocoa_fullscreen.m

@ -83,7 +83,7 @@ int _glfwPlatformGetVideoModes(GLFWvidmode* list, int maxcount)
NSArray* modes = (NSArray*) CGDisplayAvailableModes(CGMainDisplayID());
unsigned int i, j = 0, n = [modes count];
for (i = 0; i < n && i < (unsigned)maxcount; i++)
for (i = 0; i < n && j < (unsigned)maxcount; i++)
{
NSDictionary *mode = [modes objectAtIndex:i];
if (modeIsGood(mode))

Loading…
Cancel
Save