diff options
author | Chris Robinson <[email protected]> | 2012-09-16 03:19:53 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-16 05:35:38 -0700 |
commit | df2e82da78a70a8929ed4bd065515eab7d1db336 (patch) | |
tree | ba821abe9e86617206f8ad8625ea4fc2f7ddd096 /OpenAL32 | |
parent | a1daec66e29cf90132d4a5e51e00b04a162f15be (diff) |
Properly handle the SSE control word
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index fd372326..c1cc2665 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -780,6 +780,9 @@ void al_free(void *ptr); typedef struct { int state; +#ifdef HAVE_SSE + int sse_state; +#endif } FPUCtl; void SetMixerFPUMode(FPUCtl *ctl); void RestoreFPUMode(const FPUCtl *ctl); |