From 65a54cbd8b2773ecaffefaae6b70a60105b386c1 Mon Sep 17 00:00:00 2001 From: Benau Date: Wed, 12 Jun 2019 01:18:36 +0800 Subject: [PATCH] Fix color emoji scaled wrongly with overbright color --- lib/irrlicht/source/Irrlicht/CImage.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/irrlicht/source/Irrlicht/CImage.cpp b/lib/irrlicht/source/Irrlicht/CImage.cpp index 60ff3702a..b5c0ca421 100644 --- a/lib/irrlicht/source/Irrlicht/CImage.cpp +++ b/lib/irrlicht/source/Irrlicht/CImage.cpp @@ -368,6 +368,11 @@ void CImage::copyToScalingBoxFilter(IImage* target, s32 bias, bool blend) s32 fy = core::ceil32( sourceYStep ); f32 sx; f32 sy; + // Color emoji scaled wrongly with overbright color if larger than 4 + if (fx > 4) + fx = 4; + if (fy > 4) + fy = 4; sy = 0.f; for ( u32 y = 0; y != destSize.Height; ++y )