aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alBuffer.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-10-22 08:53:59 -0700
committerChris Robinson <[email protected]>2009-10-22 08:53:59 -0700
commit8d807add41a1be8601b9d9a34052c4af450f103c (patch)
tree41770fc9b2829f46f5cfc2f8aabc21db12a995bc /OpenAL32/alBuffer.c
parent8501fce38b2e8b9f4b3d4c9381ed48be6bef1524 (diff)
Store the bufferID in the buffer struct
Diffstat (limited to 'OpenAL32/alBuffer.c')
-rw-r--r--OpenAL32/alBuffer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/alBuffer.c b/OpenAL32/alBuffer.c
index 09f692dc..2ebf42b0 100644
--- a/OpenAL32/alBuffer.c
+++ b/OpenAL32/alBuffer.c
@@ -106,6 +106,8 @@ ALAPI ALvoid ALAPIENTRY alGenBuffers(ALsizei n,ALuint *puiBuffers)
}
puiBuffers[i] = (ALuint)ALTHUNK_ADDENTRY(*list);
+ (*list)->buffer = puiBuffers[i];
+
(*list)->state = UNUSED;
device->BufferCount++;
i++;