Fixed order of operations in iconify test.

This commit is contained in:
Camilla Berglund 2012-10-22 00:56:23 +02:00
parent 422618d67f
commit 73ca3bdbb6

View File

@ -95,6 +95,12 @@ int main(int argc, char** argv)
GLFWmonitor monitor = NULL; GLFWmonitor monitor = NULL;
GLFWwindow window; GLFWwindow window;
if (!glfwInit())
{
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
exit(EXIT_FAILURE);
}
while ((ch = getopt(argc, argv, "fh")) != -1) while ((ch = getopt(argc, argv, "fh")) != -1)
{ {
switch (ch) switch (ch)
@ -113,12 +119,6 @@ int main(int argc, char** argv)
} }
} }
if (!glfwInit())
{
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
exit(EXIT_FAILURE);
}
if (monitor) if (monitor)
{ {
GLFWvidmode mode; GLFWvidmode mode;