Fix formatting

This commit is contained in:
Melissa LeBlanc-Williams 2023-08-08 13:03:09 -07:00
parent b25d3131a3
commit c9c7f02ba4
1 changed files with 2 additions and 2 deletions

View File

@ -894,10 +894,10 @@ void common_hal_bitmaptools_alphablend(displayio_bitmap_t *dest, displayio_bitma
pixel = (blend / (256 * ifactor1 + 256 * ifactor2 - ifactor1 * ifactor2));
} else if (blend_source1) {
// Apply iFactor1 to source1 only
pixel = *sptr1++ *ifactor1 / 256;
pixel = *sptr1++ * ifactor1 / 256;
} else if (blend_source2) {
// Apply iFactor2 to source1 only
pixel = *sptr2++ *ifactor2 / 256;
pixel = *sptr2++ * ifactor2 / 256;
} else {
// Use the destination value
pixel = *dptr;