Fix compilation with MSVC by using sprintf instead of snprintf

snprintf is part of c99 standard, not supported by MS compilers
This commit is contained in:
Lambert Clara
2012-08-12 12:29:55 +02:00
parent 2f095cc9e3
commit 704e56fc81
3 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -46,9 +46,9 @@ static void set_swap_interval(GLFWwindow window, int interval)
swap_interval = interval;
glfwSwapInterval(swap_interval);
snprintf(title, sizeof(title),
"Cursor Inaccuracy Detector (interval %i)",
swap_interval);
sprintf(title,
"Cursor Inaccuracy Detector (interval %i)",
swap_interval);
glfwSetWindowTitle(window, title);
}