aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-10-11 12:24:07 -0700
committerChris Robinson <[email protected]>2010-10-11 12:24:07 -0700
commit932fcfa8bff4176a71c63d07376c810244b50cbb (patch)
treebdee10e41d425b202b81ed10c51c849b9f2534d3 /OpenAL32
parent314832e35a9f01b47fc8ed21c30e921a4cb75a99 (diff)
Fix 64-bit compilation
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/alDatabuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alDatabuffer.c b/OpenAL32/alDatabuffer.c
index 06a5a94f..cbe65a09 100644
--- a/OpenAL32/alDatabuffer.c
+++ b/OpenAL32/alDatabuffer.c
@@ -155,7 +155,7 @@ AL_API ALvoid AL_APIENTRY alDeleteDatabuffersEXT(ALsizei n, const ALuint *buffer
// Release buffer structure
RemoveUIntMapKey(&device->DatabufferMap, ALBuf->databuffer);
- ALTHUNK_REMOVEENTRY(puiBuffers[i]);
+ ALTHUNK_REMOVEENTRY(ALBuf->databuffer);
memset(ALBuf, 0, sizeof(ALdatabuffer));
free(ALBuf);