aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEhsan Akhgari <ehsan.akhgari@gmail.com>2013-03-15 11:50:45 -0400
committerAlon Zakai <alonzakai@gmail.com>2013-03-15 11:53:17 -0700
commitaf7beb7f1686a978b05613f2c9ddc3208df4849e (patch)
tree54067994ab4743d126b0b5fe5d0e67953c80d8cb
parentf5d120e9b95f46ca2bece01fe601ab480b7a64e6 (diff)
Fix a typo
-rw-r--r--src/library_openal.js2
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;
}
},