diff options
author | Chris Robinson <[email protected]> | 2008-08-15 17:43:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-08-15 17:43:07 -0700 |
commit | db541f3cfa99b3b817f4aacde5a7f176afc464f9 (patch) | |
tree | 13863b45747b34bb98390e6c9647ee8a4444d310 /OpenAL32/Include/alSource.h | |
parent | 3e19ba6ca86758fa356094fab9e85c959421f73f (diff) |
Remove unneeded source struct member
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 42a1b915..976921f9 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -56,9 +56,9 @@ typedef struct ALsource ALenum state; ALuint position; ALuint position_fraction; + struct ALbufferlistitem *queue; // Linked list of buffers in queue ALuint BuffersInQueue; // Number of buffers in queue - ALuint BuffersProcessed; // Number of buffers already processed (played) ALuint TotalBufferDataSize; // Total amount of data contained in the buffers queued for this source ALuint BuffersPlayed; // Number of buffers played on this loop |