Fixed a few warnings

This commit is contained in:
Sylvain 2021-10-25 16:18:40 +02:00
parent b793394590
commit 4960cc3dcb
No known key found for this signature in database
GPG key ID: 5F87E02E5BC0939E
2 changed files with 2 additions and 3 deletions

View file

@ -3456,8 +3456,8 @@ SDL_RenderCopyExF(SDL_Renderer * renderer, SDL_Texture * texture,
float c_minx, c_miny, c_maxx, c_maxy;
const float radian_angle = (float)((M_PI * angle) / 180.0);
const float s = SDL_sin(radian_angle);
const float c = SDL_cos(radian_angle);
const float s = SDL_sinf(radian_angle);
const float c = SDL_cosf(radian_angle);
minu = (float) (real_srcrect.x) / (float) texture->w;
minv = (float) (real_srcrect.y) / (float) texture->h;