diff options
author | Ehsan Akhgari <ehsan.akhgari@gmail.com> | 2013-03-15 11:50:45 -0400 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-15 11:53:17 -0700 |
commit | af7beb7f1686a978b05613f2c9ddc3208df4849e (patch) | |
tree | 54067994ab4743d126b0b5fe5d0e67953c80d8cb | |
parent | f5d120e9b95f46ca2bece01fe601ab480b7a64e6 (diff) |
Fix a typo
-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; } }, |