Fix build issue

This commit is contained in:
Wouter Wijsman 2021-12-07 10:56:48 +01:00 committed by Ozkan Sezer
parent 7266cf66c7
commit e17a3154ed
1 changed files with 4 additions and 4 deletions

View File

@ -722,10 +722,10 @@ PSP_QueueCopyEx(SDL_Renderer * renderer, SDL_RenderCommand *cmd, SDL_Texture * t
MathSincos(degToRad(angle), &s, &c);
float cw = c * width;
float sw = s * width;
float ch = c * height;
float sh = s * height;
cw = c * width;
sw = s * width;
ch = c * height;
sh = s * height;
if (flip & SDL_FLIP_VERTICAL) {
Swap(&v0, &v1);