Fix missing call to glfwTerminate

This commit is contained in:
Camilla Löwy 2018-04-10 17:52:54 +02:00
parent d222a40046
commit 5d8b04a7ac

View File

@ -455,6 +455,7 @@ int main(int argc, char* argv[])
glfwPollEvents();
}
glfwTerminate();
exit(EXIT_SUCCESS);
}