mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-11 22:08:15 +00:00
Review "aggregate initializations" #1403
This commit is contained in:
@@ -3565,7 +3565,7 @@ Color ColorAlphaBlend(Color dst, Color src, Color tint)
|
||||
Vector4 fdst = ColorNormalize(dst);
|
||||
Vector4 fsrc = ColorNormalize(src);
|
||||
Vector4 ftint = ColorNormalize(tint);
|
||||
Vector4 fout = { 0.0f };
|
||||
Vector4 fout = { 0 };
|
||||
|
||||
fout.w = fsrc.w + fdst.w*(1.0f - fsrc.w);
|
||||
|
||||
|
Reference in New Issue
Block a user