diff options
author | Chris Robinson <[email protected]> | 2011-08-29 13:43:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-29 13:43:59 -0700 |
commit | 4a5dd73a3cd38c20b4b2ca45026167eb5ce0bc95 (patch) | |
tree | 0d9c5683361190059ce90e4d40678b4418b85e95 /OpenAL32/Include/alSource.h | |
parent | 950570b8c30b08cff0d4325858efb4d852a3f6e7 (diff) |
Make the source's NeedsUpdate volatile
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index f76cd2c1..5f2ba610 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -119,7 +119,7 @@ typedef struct ALsource ALfloat history[MAXCHANNELS]; } Send[MAX_SENDS]; } Params; - ALenum NeedsUpdate; + volatile ALenum NeedsUpdate; ALvoid (*Update)(struct ALsource *self, const ALCcontext *context); |