aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alState.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/alState.c
parent89d84131a46f0aa528eb0d3adbe0798cd4304b4e (diff)
Rename some struct members for consistency
Diffstat (limited to 'OpenAL32/alState.c')
-rw-r--r--OpenAL32/alState.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c
index 9b17045e..32d86f35 100644
--- a/OpenAL32/alState.c
+++ b/OpenAL32/alState.c
@@ -63,7 +63,7 @@ ALAPI ALvoid ALAPIENTRY alEnable(ALenum capability)
if(updateSources)
{
- ALsource *source = Context->Source;
+ ALsource *source = Context->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;
@@ -96,7 +96,7 @@ ALAPI ALvoid ALAPIENTRY alDisable(ALenum capability)
if(updateSources)
{
- ALsource *source = Context->Source;
+ ALsource *source = Context->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;
@@ -552,7 +552,7 @@ ALAPI ALvoid ALAPIENTRY alDopplerFactor(ALfloat value)
// relative sources are affected
if(updateSources)
{
- ALsource *source = Context->Source;
+ ALsource *source = Context->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;
@@ -581,7 +581,7 @@ ALAPI ALvoid ALAPIENTRY alDopplerVelocity(ALfloat value)
if(updateSources)
{
- ALsource *source = Context->Source;
+ ALsource *source = Context->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;
@@ -610,7 +610,7 @@ ALAPI ALvoid ALAPIENTRY alSpeedOfSound(ALfloat flSpeedOfSound)
if(updateSources)
{
- ALsource *source = pContext->Source;
+ ALsource *source = pContext->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;
@@ -649,7 +649,7 @@ ALAPI ALvoid ALAPIENTRY alDistanceModel(ALenum value)
if(updateSources)
{
- ALsource *source = Context->Source;
+ ALsource *source = Context->SourceList;
while(source)
{
source->NeedsUpdate = AL_TRUE;