mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
ieee_float: Silence compiler warning
Trivial issue reported by @pgimeno
This commit is contained in:
parent
8e4095f068
commit
80eb762af1
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ u32 f32Tou32Slow(f32 f)
|
|||
return signbit | 0x7FC00000UL;
|
||||
if (std::isinf(f))
|
||||
return signbit | 0x7F800000UL;
|
||||
int exp;
|
||||
int exp = 0; // silence warning
|
||||
f32 mant = frexpf(f, &exp);
|
||||
u32 imant = (u32)std::floor((signbit ? -16777216.f : 16777216.f) * mant);
|
||||
exp += 126;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue