GRAPHICS: Fix incorrect call to blendFill in drawRoundedSquareShadowClip
Was broken in commit 622adff628
.
This commit is contained in:
parent
622adff628
commit
482c075747
1 changed files with 2 additions and 1 deletions
|
@ -3739,7 +3739,8 @@ drawRoundedSquareShadowClip(int x1, int y1, int r, int w, int h, int offset) {
|
|||
occludingRect.right, y2);
|
||||
}
|
||||
} else {
|
||||
blendFill(ptr_fill + shadowRect.left, ptr_fill + shadowRect.right + 1, color, (uint8)alpha);
|
||||
blendFillClip(ptr_fill + shadowRect.left, ptr_fill + shadowRect.right + 1, color, (uint8)alpha,
|
||||
shadowRect.left, y2);
|
||||
}
|
||||
|
||||
ptr_fill += pitch;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue