diff options
author | Chris Robinson <[email protected]> | 2010-03-16 15:37:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-16 15:37:41 -0700 |
commit | ec917e8e2ff30d2c2da873b3ce4f95160c89f03f (patch) | |
tree | 6fa1623ba3b353a517b5d0b1b99b45db59f3b0e7 /OpenAL32/Include/alMain.h | |
parent | 89d84131a46f0aa528eb0d3adbe0798cd4304b4e (diff) |
Rename some struct members for consistency
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 6fc6db34..19a57b6c 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -250,20 +250,20 @@ struct ALCdevice_struct ALuint NumAuxSends; // Linked List of Buffers for this device - struct ALbuffer *Buffers; - ALuint BufferCount; + struct ALbuffer *BufferList; + ALuint BufferCount; // Linked List of Effects for this device struct ALeffect *EffectList; - ALuint EffectCount; + ALuint EffectCount; // Linked List of Filters for this device struct ALfilter *FilterList; - ALuint FilterCount; + ALuint FilterCount; // Linked List of Databuffers for this device - struct ALdatabuffer *Databuffers; - ALuint DatabufferCount; + struct ALdatabuffer *DatabufferList; + ALuint DatabufferCount; // Stereo-to-binaural filter struct bs2b *Bs2b; @@ -302,11 +302,11 @@ struct ALCcontext_struct { ALlistener Listener; - struct ALsource *Source; + struct ALsource *SourceList; ALuint SourceCount; - struct ALeffectslot *AuxiliaryEffectSlot; - ALuint AuxiliaryEffectSlotCount; + struct ALeffectslot *EffectSlotList; + ALuint EffectSlotCount; struct ALdatabuffer *SampleSource; struct ALdatabuffer *SampleSink; |