diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-12-20 15:30:06 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-12-20 15:30:06 -0300 |
commit | a36a774897ae191ebb90ba803bac7f919e92bd6c (patch) | |
tree | 38a60d8a92d9add2f9641f1c4047d29821aa278a /drivers/vorbis/os.h | |
parent | 7dbc19f32db7b63062e715381923c873bf18683e (diff) |
Fixes
-=-=-=
-Added missing quaternion constructor
-code completion fixes
-winrt fixes
Diffstat (limited to 'drivers/vorbis/os.h')
-rw-r--r-- | drivers/vorbis/os.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vorbis/os.h b/drivers/vorbis/os.h index 276b4decc7..3df1d194e9 100644 --- a/drivers/vorbis/os.h +++ b/drivers/vorbis/os.h @@ -120,7 +120,7 @@ static inline int vorbis_ftoi(double f){ /* yes, double! Otherwise, /* MSVC inline assembly. 32 bit only; inline ASM isn't implemented in the * 64 bit compiler */ -#if defined(_MSC_VER) && !defined(_WIN64) && !defined(_WIN32_WCE) +#if defined(_MSC_VER) && !defined(_WIN64) && !defined(_WIN32_WCE) && !defined(WINDOWSPHONE_ENABLED) # define VORBIS_FPU_CONTROL typedef ogg_int16_t vorbis_fpu_control; |