summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c2
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);