Silenced demo console chatter

This commit is contained in:
Stefan Gustavson 2011-04-04 21:15:39 +02:00
parent 8b20e45e3d
commit 91654516ab

View File

@ -244,7 +244,6 @@ double computeFPS() {
fps = (double)frames / (t-t0); fps = (double)frames / (t-t0);
sprintf(titlestring, "GLSL noise demo (%.1f FPS)", fps); sprintf(titlestring, "GLSL noise demo (%.1f FPS)", fps);
glfwSetWindowTitle(titlestring); glfwSetWindowTitle(titlestring);
printf("Speed: %.1f FPS\n", fps);
t0 = t; t0 = t;
frames = 0; frames = 0;
} }