aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-05-04 02:56:01 -0700
committerChris Robinson <[email protected]>2018-05-04 02:56:01 -0700
commitb31a54e97217ca0b6737f4f8de82fd50e34f64c9 (patch)
treedc9e2560734a07badd2c025b1c1e652f31e4e30b /OpenAL32
parent75e2cb97f74aeed2e50e4355607f041414a43976 (diff)
Try to fix 32-bit MSVC builds
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 0cab5a17..fa29069f 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -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