Fixed /W4 compile warnings in sample SimpleOpenGL.

This commit is contained in:
Marc-Antoine Lortie
2020-04-02 14:19:16 -04:00
parent bfedc05045
commit 56e2f2e37e

View File

@@ -245,7 +245,7 @@ void do_motion (void)
static int frames = 0;
int time = glutGet(GLUT_ELAPSED_TIME);
angle += (time-prev_time)*0.01;
angle += (time-prev_time)*0.01f;
prev_time = time;
frames += 1;