Formatting.

This commit is contained in:
Camilla Berglund 2012-08-12 15:32:06 +02:00
parent 129598eb51
commit 06b5d0f665
2 changed files with 2 additions and 6 deletions

View File

@ -46,9 +46,7 @@ static void set_swap_interval(GLFWwindow window, int interval)
swap_interval = interval;
glfwSwapInterval(swap_interval);
sprintf(title,
"Cursor Inaccuracy Detector (interval %i)",
swap_interval);
sprintf(title, "Cursor Inaccuracy Detector (interval %i)", swap_interval);
glfwSetWindowTitle(window, title);
}

View File

@ -43,9 +43,7 @@ static void set_swap_interval(GLFWwindow window, int interval)
swap_interval = interval;
glfwSwapInterval(swap_interval);
sprintf(title,
"Tearing detector (interval %i)",
swap_interval);
sprintf(title, "Tearing detector (interval %i)", swap_interval);
glfwSetWindowTitle(window, title);
}