diff options
author | Chris Robinson <[email protected]> | 2010-11-25 18:30:57 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-25 18:30:57 -0800 |
commit | 596514f7aa47ae83e44934bf43eada38ab331ffd (patch) | |
tree | 5af268a0a63b04b64c1f9873a520fcbd01454e5e /OpenAL32/Include/alSource.h | |
parent | 6e3a6f90e9e1db9c12a6a4c28e62b4637d2c7ac7 (diff) |
Make the buffer queue a double-linked list
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 54a3470e..96e5393c 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -25,6 +25,7 @@ typedef struct ALbufferlistitem { struct ALbuffer *buffer; struct ALbufferlistitem *next; + struct ALbufferlistitem *prev; } ALbufferlistitem; typedef struct ALsource |