PSP renderer fixed

main
stdgregwar 2020-12-26 12:46:07 +01:00 committed by Ozkan Sezer
parent 6f6382f8d0
commit 21d46b7e0c
1 changed files with 3 additions and 1 deletions

View File

@ -659,7 +659,7 @@ PSP_QueueCopy(SDL_Renderer * renderer, SDL_RenderCommand *cmd, SDL_Texture * tex
cmd->data.draw.count = count; cmd->data.draw.count = count;
verts = (VertTV *) SDL_AllocateRenderVertices(renderer, count * sizeof (VertTV), 4, &cmd->data.draw.first); verts = (VertTV *) SDL_AllocateRenderVertices(renderer, count * 2 * sizeof (VertTV), 4, &cmd->data.draw.first);
if (!verts) { if (!verts) {
return -1; return -1;
} }
@ -677,6 +677,7 @@ PSP_QueueCopy(SDL_Renderer * renderer, SDL_RenderCommand *cmd, SDL_Texture * tex
verts->x = curX; verts->x = curX;
verts->y = y; verts->y = y;
verts->z = 0; verts->z = 0;
verts++;
curU += sourceWidth; curU += sourceWidth;
curX += polyWidth; curX += polyWidth;
@ -686,6 +687,7 @@ PSP_QueueCopy(SDL_Renderer * renderer, SDL_RenderCommand *cmd, SDL_Texture * tex
verts->x = curX; verts->x = curX;
verts->y = (y + height); verts->y = (y + height);
verts->z = 0; verts->z = 0;
verts++;
} }
} }