Codechange: Replace color with colour.

This commit is contained in:
Peter Nelson
2025-11-17 22:07:59 +00:00
committed by dP
parent a1bc41d67d
commit 90001dabfa
14 changed files with 39 additions and 39 deletions
+4 -4
View File
@@ -252,9 +252,9 @@ inline void Blitter_40bppAnim::Draw(const Blitter::BlitterParams *bp, ZoomLevel
if (src_px->a == 255) {
src_px += n;
do {
/* If the anim buffer contains a color value, the image composition will
/* If the anim buffer contains a colour value, the image composition will
* only look at the RGB brightness value. As such, we can simply darken the
* RGB value to darken the anim color. */
* RGB value to darken the anim colour. */
Colour b = *anim != 0 ? Colour(GetColourBrightness(*dst), 0, 0) : *dst;
*dst = this->MakeTransparent(b, 3, 4);
anim++;
@@ -373,9 +373,9 @@ void Blitter_40bppAnim::DrawColourMappingRect(void *dst, int width, int height,
uint8_t *anim = VideoDriver::GetInstance()->GetAnimBuffer() + ((uint32_t *)dst - (uint32_t *)_screen.dst_ptr);
if (pal == PALETTE_TO_TRANSPARENT) {
/* If the anim buffer contains a color value, the image composition will
/* If the anim buffer contains a colour value, the image composition will
* only look at the RGB brightness value. As such, we can simply darken the
* RGB value to darken the anim color. */
* RGB value to darken the anim colour. */
do {
for (int i = 0; i != width; i++) {
Colour b = *anim != 0 ? Colour(GetColourBrightness(*udst), 0, 0) : *udst;