aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--OpenAL32/Include/alMain.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 147ce08e..c02d6b47 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -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;