Skip to content

Commit

Permalink
render: Fixed compiler warning about implicit cast.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 14, 2020
1 parent 6f3fa02 commit a96d8a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/render/SDL_render.c
Expand Up @@ -664,13 +664,13 @@ SDL_RendererEventWatch(void *userdata, SDL_Event *event)
float rel = renderer->xrel + event->motion.xrel / (scale.x * renderer->dpi_scale.x);
float trunc = SDL_truncf(rel);
renderer->xrel = rel - trunc;
event->motion.xrel = trunc;
event->motion.xrel = (Sint32) trunc;
}
if (event->motion.yrel != 0 && renderer->relative_scaling) {
float rel = renderer->yrel + event->motion.yrel / (scale.y * renderer->dpi_scale.y);
float trunc = SDL_truncf(rel);
renderer->yrel = rel - trunc;
event->motion.yrel = trunc;
event->motion.yrel = (Sint32) trunc;
}
}
}
Expand Down

0 comments on commit a96d8a4

Please sign in to comment.