diff options
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 53831ccf..a79b6962 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -281,7 +281,7 @@ inline ALint fastf2i(ALfloat f) * libc call, while MSVC's implementation is horribly slow, so always fall * back to a normal integer conversion for them. */ -#elif defined(HAVE_LRINTF) && !defined(_MSC_VER) && !defined(__clang__) +#elif !defined(_MSC_VER) && !defined(__clang__) return lrintf(f); |