aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alListener.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-11 01:26:09 -0700
committerChris Robinson <[email protected]>2011-09-11 01:26:09 -0700
commitccd8cbc2a944a0822d1277b1524d05455564b0e5 (patch)
tree24c50c51fea4f40b769a7a1bd1534ea32acb6db0 /OpenAL32/Include/alListener.h
parent1075cce7b3dc6fd6592a925224735437f6b6f3ed (diff)
Make some listener properties volatile
Diffstat (limited to 'OpenAL32/Include/alListener.h')
-rw-r--r--OpenAL32/Include/alListener.h8
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;