aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alAuxEffectSlot.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-01-15 16:01:27 -0800
committerChris Robinson <[email protected]>2008-01-15 16:01:27 -0800
commit707e5968115f99afd6efe6b0f61d8bbf0baa7a94 (patch)
tree401debc157883085166993273d0bfcf8a4a1a743 /OpenAL32/Include/alAuxEffectSlot.h
parent5678041b926d1a6dd74cdef0b97face79879a461 (diff)
Don't append _struct to the effect slot struct name
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r--OpenAL32/Include/alAuxEffectSlot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h
index e34d787d..5d389193 100644
--- a/OpenAL32/Include/alAuxEffectSlot.h
+++ b/OpenAL32/Include/alAuxEffectSlot.h
@@ -14,7 +14,7 @@ extern "C" {
#define AL_EFFECTSLOT_NULL 0x0000
-typedef struct ALeffectslot_struct
+typedef struct ALeffectslot
{
ALeffect effect;
@@ -24,7 +24,7 @@ typedef struct ALeffectslot_struct
// Index to itself
ALuint effectslot;
- struct ALeffectslot_struct *next;
+ struct ALeffectslot *next;
} ALeffectslot;
AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots);