diff options
| author | Ray <[email protected]> | 2020-10-05 20:04:33 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-10-05 20:04:33 +0200 |
| commit | a4ea9f872ffef9ffe66fade37e984c3cc97910cb (patch) | |
| tree | b20ce1514e05c6685dd9d7e6859e3bdbcd5832e9 /src/textures.c | |
| parent | a8685ee4fd6eaba79fa53f4adf261d672947a000 (diff) | |
| download | raylib-a4ea9f872ffef9ffe66fade37e984c3cc97910cb.tar.gz raylib-a4ea9f872ffef9ffe66fade37e984c3cc97910cb.zip | |
Review "aggregate initializations" #1403
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index a555aeb4..0854aa9e 100644 --- a/src/textures.c +++ b/src/textures.c @@ -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); |
