use c-styl cast in a c-file

pull/3321/head
Kim Kulling 2020-07-11 22:34:43 +02:00 committed by GitHub
parent 2cd1192bf1
commit b8ec93aa21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ void do_motion (void)
static int frames = 0; static int frames = 0;
int time = glutGet(GLUT_ELAPSED_TIME); int time = glutGet(GLUT_ELAPSED_TIME);
angle += static_cast<float>((time-prev_time)*0.01); angle += (float)((time-prev_time)*0.01);
prev_time = time; prev_time = time;
frames += 1; frames += 1;