Skip to content

Commit 2e1ec8e

Browse files
committed
Remove unnecessary initialization
1 parent e6f4d1c commit 2e1ec8e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/rtextures.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5396,7 +5396,6 @@ static float HalfToFloat(unsigned short x)
53965396
float result = 0.0f;
53975397

53985398
union floatUnsignedUnion uni;
5399-
uni.fm = 0.0f;
54005399

54015400
const unsigned int e = (x & 0x7C00) >> 10; // Exponent
54025401
const unsigned int m = (x & 0x03FF) << 13; // Mantissa

0 commit comments

Comments
 (0)