diff options
author | Chris Robinson <[email protected]> | 2012-10-09 06:19:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-09 06:19:36 -0700 |
commit | 39bc2ba65c5b52b46bd8dd1587837882d98c5120 (patch) | |
tree | 36da448b685a228a76e7221d47d3ada0175d7feb /OpenAL32/Include | |
parent | d598f82722d6784fada1c8b2a522463d5bf31c42 (diff) |
Build the listener matrix separately
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alListener.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenAL32/Include/alListener.h b/OpenAL32/Include/alListener.h index 8c5fe734..830b70da 100644 --- a/OpenAL32/Include/alListener.h +++ b/OpenAL32/Include/alListener.h @@ -12,9 +12,12 @@ typedef struct ALlistener { volatile ALfloat Velocity[3]; volatile ALfloat Forward[3]; volatile ALfloat Up[3]; - volatile ALfloat Matrix[4][4]; volatile ALfloat Gain; volatile ALfloat MetersPerUnit; + + struct { + ALfloat Matrix[4][4]; + } Params; } ALlistener; #ifdef __cplusplus |