aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEhsan Akhgari <ehsan.akhgari@gmail.com>2012-06-20 17:08:49 -0400
committerEhsan Akhgari <ehsan.akhgari@gmail.com>2012-06-20 17:53:38 -0400
commitfb1d268c899e3e8f96bd558c64e0e8823407e1fd (patch)
tree91ea2043b46be6c729e70a04381aa161e82b9543 /src
parent8c3f4eb956c9dcad257b1c0c25b2f85eb628902c (diff)
Fix a typo
Diffstat (limited to 'src')
-rw-r--r--src/library_gl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_gl.js b/src/library_gl.js
index 25b44136..92b84977 100644
--- a/src/library_gl.js
+++ b/src/library_gl.js
@@ -1997,7 +1997,7 @@ var LibraryGL = {
},
glColor4us__deps: ['glColor4f'],
glColor4us: function(r, g, b, a) {
- _glColor4f((r&65525)/65535, (g&65525)/65535, (b&65525)/65535, (a&65525)/65535);
+ _glColor4f((r&65535)/65535, (g&65535)/65535, (b&65535)/65535, (a&65535)/65535);
},
glColor4ui__deps: ['glColor4f'],
glColor4ui: function(r, g, b, a) {