Don't append _struct to the source struct name

This commit is contained in:
Chris Robinson
2007-12-31 01:09:21 -08:00
parent 1e0fa58d79
commit f32098e04d
+2 -2
View File
@@ -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