Turn off time-related debug messages

This commit is contained in:
Théophile Bastian 2018-02-13 11:49:13 +01:00
parent 188d43cb50
commit 8746f6bf6a
1 changed files with 0 additions and 7 deletions

View File

@ -26,13 +26,6 @@ void periodic_update() {
auto now = std::chrono::steady_clock::now();
_ball->update_pos(ellapsed_double(_last_time, now));
fprintf(stderr, "dt = %lf, tot = %lf; center: %.2lf, %.2lf, %.2lf\n",
ellapsed_double(_last_time, now),
ellapsed_double(_init_clocks, now),
_ball->getCenter().x,
_ball->getCenter().y,
_ball->getCenter().z);
_last_time = now;
glutPostRedisplay();
}