mirror of
https://github.com/glfw/glfw.git
synced 2026-02-19 05:42:59 +01:00
Fixed loop termination bug.
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user