diff options
Diffstat (limited to 'engines/sword25')
-rw-r--r-- | engines/sword25/gfx/image/vectorimagerenderer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sword25/gfx/image/vectorimagerenderer.cpp b/engines/sword25/gfx/image/vectorimagerenderer.cpp index a8820d9121..4a791eb80b 100644 --- a/engines/sword25/gfx/image/vectorimagerenderer.cpp +++ b/engines/sword25/gfx/image/vectorimagerenderer.cpp @@ -67,7 +67,8 @@ void art_rgb_run_alpha1(art_u8 *buf, art_u8 r, art_u8 g, art_u8 b, int alpha, in v = *buf; *buf++ = v + (((r - v) * alpha + 0x80) >> 8); v = *buf; - *buf++ = v + (((alpha - v) * alpha + 0x80) >> 8); + // FIXME: Is this correct? + *buf++ = MIN(v + alpha, 0xff); } } |