Render all sides when drawing rect on PSP

main
Wouter Wijsman 2022-02-09 18:07:46 +01:00 committed by Sam Lantinga
parent 5b41844c75
commit abc8198a1f
1 changed files with 4 additions and 5 deletions

View File

@ -774,14 +774,13 @@ PSP_QueueFillRects(SDL_Renderer * renderer, SDL_RenderCommand *cmd, const SDL_FR
cmd->data.draw.count = count;
for (i = 0; i < count; i++, rects++) {
const SDL_FRect *rect = &rects[i];
verts->x = rect->x;
verts->y = rect->y;
verts->x = rects->x;
verts->y = rects->y;
verts->z = 0.0f;
verts++;
verts->x = rect->x + rect->w;
verts->y = rect->y + rect->h;
verts->x = rects->x + rects->w + 0.5f;
verts->y = rects->y + rects->h + 0.5f;
verts->z = 0.0f;
verts++;
}