aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-03-23 03:03:03 -0700
committerChris Robinson <[email protected]>2014-03-23 03:03:03 -0700
commit0ce0a88fd67ddcf7cb5248ac08d36cfa1c0013eb (patch)
tree97529b194e1ae3c33b7d4faa605ee3ead4e350d2 /OpenAL32/alSource.c
parentb0d511a8609cd2f3c10fd5b65603211a14c8141e (diff)
Move the step counter and moving flag to DirectParams
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r--OpenAL32/alSource.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c
index e12c9b35..082d8f54 100644
--- a/OpenAL32/alSource.c
+++ b/OpenAL32/alSource.c
@@ -2339,8 +2339,8 @@ ALvoid SetSourceState(ALsource *Source, ALCcontext *Context, ALenum state)
}
else
{
- src->Direct.Mix.Hrtf.State.Moving = AL_FALSE;
- src->Direct.Mix.Hrtf.State.Counter = 0;
+ src->Direct.Moving = AL_FALSE;
+ src->Direct.Counter = 0;
for(j = 0;j < MAX_INPUT_CHANNELS;j++)
{
for(k = 0;k < SRC_HISTORY_LENGTH;k++)