aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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