Try to fix 32-bit MSVC builds

This commit is contained in:
Chris Robinson
2018-05-04 02:56:01 -07:00
parent 75e2cb97f7
commit b31a54e972
+1 -1
View File
@@ -236,7 +236,7 @@ inline ALint fastf2i(ALfloat f)
#if defined(_MSC_VER) && defined(_M_IX86_FP)
ALint i;
#if _M_IX86_FP > 0
__asm cvtss2si i, f
__asm { cvtss2si i, f }
#else
__asm fld f
__asm fistp i