diff options
author | Chris Robinson <[email protected]> | 2011-09-11 01:26:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-09-11 01:26:09 -0700 |
commit | ccd8cbc2a944a0822d1277b1524d05455564b0e5 (patch) | |
tree | 24c50c51fea4f40b769a7a1bd1534ea32acb6db0 /OpenAL32 | |
parent | 1075cce7b3dc6fd6592a925224735437f6b6f3ed (diff) |
Make some listener properties volatile
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alListener.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenAL32/Include/alListener.h b/OpenAL32/Include/alListener.h index 2bda3197..0f399e5f 100644 --- a/OpenAL32/Include/alListener.h +++ b/OpenAL32/Include/alListener.h @@ -9,10 +9,10 @@ extern "C" { typedef struct ALlistener_struct { - ALfloat Position[3]; - ALfloat Velocity[3]; - ALfloat Forward[3]; - ALfloat Up[3]; + volatile ALfloat Position[3]; + volatile ALfloat Velocity[3]; + volatile ALfloat Forward[3]; + volatile ALfloat Up[3]; volatile ALfloat Gain; volatile ALfloat MetersPerUnit; } ALlistener; |