diff options
author | Chris Robinson <[email protected]> | 2012-02-17 01:29:23 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-02-17 01:29:23 -0800 |
commit | 75aa96a4a67e205e82c7579183deb7541e94234d (patch) | |
tree | 824bbe9baaf79677e82e270fbe001d60ec9d228b /Alc/ALu.c | |
parent | 10257f485a77d0b5ece433bec403dc2f8a57a8c3 (diff) |
Silence an MSVC warning
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -794,7 +794,7 @@ static __inline ALint aluF2I(ALfloat val) { if(val > 1.0f) return 2147483647; if(val < -1.0f) return -2147483647-1; - return fastf2i(val*2147483647.0); + return fastf2i((ALfloat)(val*2147483647.0)); } static __inline ALuint aluF2UI(ALfloat val) { return aluF2I(val)+2147483648u; } |