Suppress MSVC compiler `possible loss of data` warning with explicit cast

This commit is contained in:
Petr Abdulin 2024-01-22 23:11:50 +07:00
parent e410e39497
commit 6c6260a7c2
1 changed files with 3 additions and 3 deletions

View File

@ -7662,9 +7662,9 @@ nk_rgb_factor(struct nk_color col, const float factor)
{
if (factor == 1.0f)
return col;
col.r *= factor;
col.g *= factor;
col.b *= factor;
col.r = (nk_byte)(col.r * factor);
col.g = (nk_byte)(col.g * factor);
col.b = (nk_byte)(col.b * factor);
return col;
}
NK_API struct nk_color