From: Luke Lau Date: Tue, 9 Oct 2018 13:50:13 +0000 (+0100) Subject: Fix typo X-Git-Tag: phong~1 X-Git-Url: https://git.lukelau.me/?p=opengl.git;a=commitdiff_plain;h=f26de7de42a3d0a52365de79f528fcea808e2bca Fix typo --- diff --git a/main.cpp b/main.cpp index 99312d3..4cc4280 100644 --- a/main.cpp +++ b/main.cpp @@ -242,7 +242,7 @@ void timer(int _) { camPos.y += ySpeed; camPos.z += zSpeed * sin(yaw) - xSpeed * cos(yaw); glutPostRedisplay(); - glutTimerFunc(16, idle, 0); + glutTimerFunc(16, timer, 0); } int prevMouseX, prevMouseY;