aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alListener.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-03-16 15:37:41 -0700
committerChris Robinson <[email protected]>2010-03-16 15:37:41 -0700
commitec917e8e2ff30d2c2da873b3ce4f95160c89f03f (patch)
tree6fa1623ba3b353a517b5d0b1b99b45db59f3b0e7 /OpenAL32/alListener.c
parent89d84131a46f0aa528eb0d3adbe0798cd4304b4e (diff)
Rename some struct members for consistency
Diffstat (limited to 'OpenAL32/alListener.c')
-rw-r--r--OpenAL32/alListener.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/alListener.c b/OpenAL32/alListener.c
index 303d2f93..6a9ee65d 100644
--- a/OpenAL32/alListener.c
+++ b/OpenAL32/alListener.c
@@ -65,7 +65,7 @@ ALAPI ALvoid ALAPIENTRY alListenerf(ALenum eParam, ALfloat flValue)
// relative sources are affected
if(updateAll)
{
- ALsource *source = pContext->Source;
+ ALsource *source = pContext->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;
@@ -108,7 +108,7 @@ ALAPI ALvoid ALAPIENTRY alListener3f(ALenum eParam, ALfloat flValue1, ALfloat fl
if(updateWorld)
{
- ALsource *source = pContext->Source;
+ ALsource *source = pContext->SourceList;
while(source)
{
if(!source->bHeadRelative)
@@ -164,7 +164,7 @@ ALAPI ALvoid ALAPIENTRY alListenerfv(ALenum eParam, const ALfloat *pflValues)
if(updateWorld)
{
- ALsource *source = pContext->Source;
+ ALsource *source = pContext->SourceList;
while(source)
{
if(!source->bHeadRelative)