diff options
-rw-r--r-- | src/library_openal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_openal.js b/src/library_openal.js index d8197853..5511ccb7 100644 --- a/src/library_openal.js +++ b/src/library_openal.js @@ -208,7 +208,7 @@ var LibraryOpenAL = { console.error("alSourceQueueBuffers called with an invalid buffer"); return; } - AL.currentCOntext.src[source - 1].buffer = AL.currentContext.buf[buffer - 1].buf; + AL.currentContext.src[source - 1].buffer = AL.currentContext.buf[buffer - 1].buf; } }, |