diff options
author | Chris Robinson <[email protected]> | 2017-07-13 21:30:05 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-07-13 21:44:25 -0700 |
commit | 22d77b87a3f103eeceec004cd9d053c17bf1b883 (patch) | |
tree | 3586ee67ee3800c4df97ebc93164271b7d122dc9 /OpenAL32/Include/alListener.h | |
parent | 67ab9ec4662a8d47a163426193eb962772aca23f (diff) |
Store the default effect slot in the context
Diffstat (limited to 'OpenAL32/Include/alListener.h')
-rw-r--r-- | OpenAL32/Include/alListener.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alListener.h b/OpenAL32/Include/alListener.h index 9a7f9d49..f1a92b0d 100644 --- a/OpenAL32/Include/alListener.h +++ b/OpenAL32/Include/alListener.h @@ -26,7 +26,7 @@ struct ALlistenerProps { }; typedef struct ALlistener { - ALfloat Position[3]; + alignas(16) ALfloat Position[3]; ALfloat Velocity[3]; ALfloat Forward[3]; ALfloat Up[3]; |