Review "aggregate initializations" #1403

This commit is contained in:
Ray
2020-10-05 20:04:33 +02:00
parent a8685ee4fd
commit a4ea9f872f
8 changed files with 10 additions and 10 deletions

View File

@@ -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);