mirror of
https://github.com/glfw/glfw.git
synced 2025-10-03 13:20:58 +00:00
move variable declaration outside for loop to make older compilers happy
This commit is contained in:
parent
a75c457620
commit
664c8ffecb
@ -701,13 +701,14 @@ static int translateKey(unsigned int key)
|
||||
{
|
||||
NSEnumerator* e = [files objectEnumerator];
|
||||
char** names = calloc(count, sizeof(char*));
|
||||
int i;
|
||||
|
||||
for (int i = 0; i < count; i++)
|
||||
for (i = 0; i < count; i++)
|
||||
names[i] = strdup([[e nextObject] UTF8String]);
|
||||
|
||||
_glfwInputDrop(window, count, (const char**) names);
|
||||
|
||||
for (int i = 0; i < count; i++)
|
||||
for (i = 0; i < count; i++)
|
||||
free(names[i]);
|
||||
free(names);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user