Suppress MSVC compiler `possible loss of data` warning with explicit cast
This commit is contained in:
parent
e410e39497
commit
6c6260a7c2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue