Added output of initial window size.

This commit is contained in:
Camilla Berglund 2012-08-07 13:01:19 +02:00
parent 8ed66ea4d5
commit d4e1f98394

View File

@ -344,6 +344,7 @@ static void char_callback(GLFWwindow window, int character)
int main(void)
{
GLFWwindow window;
int width, height;
setlocale(LC_ALL, "");
@ -380,6 +381,9 @@ int main(void)
glfwSwapInterval(1);
glfwGetWindowSize(window, &width, &height);
printf("Window size should be %ix%i\n", width, height);
printf("Key repeat should be %s\n", keyrepeat ? "enabled" : "disabled");
printf("System keys should be %s\n", systemkeys ? "enabled" : "disabled");