This commit is contained in:
Chris Robinson 2018-05-12 03:31:58 -07:00
parent f240952bcc
commit 5c0673049c

View File

@ -297,10 +297,10 @@ inline float fast_roundf(float f)
8388608.0f /* 0x1.0p+23 */,
-8388608.0f /* -0x1.0p+23 */
};
uint32_t sign, expo;
ALuint sign, expo;
union {
float f;
uint32_t i;
ALfloat f;
ALuint i;
} conv;
conv.f = f;