diff options
author | Chris Robinson <[email protected]> | 2007-12-31 01:09:21 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-31 01:09:21 -0800 |
commit | f32098e04d7533782e66f8a06641703383b627b3 (patch) | |
tree | 7996b26d3d81029ed62e021f8bc60a525b727744 | |
parent | 1e0fa58d79d046ec244289ff8dc59ec188051d21 (diff) |
Don't append _struct to the source struct name
-rw-r--r-- | OpenAL32/Include/alSource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 499ddcf4..5edbfd1e 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -17,7 +17,7 @@ typedef struct ALbufferlistitem struct ALbufferlistitem *next; } ALbufferlistitem; -typedef struct ALsource_struct +typedef struct ALsource { ALfloat flPitch; ALfloat flGain; @@ -61,7 +61,7 @@ typedef struct ALsource_struct // Source Type (Static, Streaming, or Undetermined) ALint lSourceType; - struct ALsource_struct *next; + struct ALsource *next; } ALsource; #ifdef __cplusplus |