From ccd8cbc2a944a0822d1277b1524d05455564b0e5 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 11 Sep 2011 01:26:09 -0700 Subject: Make some listener properties volatile --- OpenAL32/Include/alListener.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenAL32/Include') 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; -- cgit v1.2.3