From 2e1ec8e44cd132bca32fdda25af3f18234b64066 Mon Sep 17 00:00:00 2001 From: asdqwe Date: Sun, 26 Jan 2025 14:56:28 -0300 Subject: [PATCH] Remove unnecessary initialization --- src/rtextures.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/rtextures.c b/src/rtextures.c index d972e1b15..0239b2acc 100644 --- a/src/rtextures.c +++ b/src/rtextures.c @@ -5396,7 +5396,6 @@ static float HalfToFloat(unsigned short x) float result = 0.0f; union floatUnsignedUnion uni; - uni.fm = 0.0f; const unsigned int e = (x & 0x7C00) >> 10; // Exponent const unsigned int m = (x & 0x03FF) << 13; // Mantissa