# HG changeset patch # User Wuzzy # Date 1548016909 -3600 # Node ID b055360684bd9f4c8bf62f0eb0fd53bf9cf3b123 # Parent c9d2a5a9f6bab5b97ecca67ead0ec43e67cefb16 Remove black pixels at corners of DrawRoundRect rectangles Fixes regression introduced in 8935dcc0e1307f3963d2d21e4f7ce1cca8407579. diff -r c9d2a5a9f6ba -r b055360684bd hedgewars/uRenderUtils.pas --- a/hedgewars/uRenderUtils.pas Sat Jan 19 05:06:33 2019 +0100 +++ b/hedgewars/uRenderUtils.pas Sun Jan 20 21:41:49 2019 +0100 @@ -46,7 +46,7 @@ begin r:= rect^; if Clear then - SDL_FillRect(Surface, @r, SDL_MapRGB(Surface^.format, 0, 0, 0)); + SDL_FillRect(Surface, @r, SDL_MapRGBA(Surface^.format, 0, 0, 0, 0)); BorderColor:= SDL_MapRGB(Surface^.format, BorderColor shr 16, BorderColor shr 8, BorderColor and $FF); FillColor:= SDL_MapRGB(Surface^.format, FillColor shr 16, FillColor shr 8, FillColor and $FF);