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 /Alc/ALc.c | |
parent | d598f82722d6784fada1c8b2a522463d5bf31c42 (diff) |
Build the listener matrix separately
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1818,7 +1818,7 @@ static ALvoid InitContext(ALCcontext *Context) for(i = 0;i < 4;i++) { for(j = 0;j < 4;j++) - Context->Listener->Matrix[i][j] = ((i==j) ? 1.0f : 0.0f); + Context->Listener->Params.Matrix[i][j] = ((i==j) ? 1.0f : 0.0f); } //Validate Context |