diff options
author | Michael Riss <Michael.Riss@gmx.de> | 2013-01-16 22:52:32 +0100 |
---|---|---|
committer | Michael Riss <Michael.Riss@gmx.de> | 2013-01-16 22:52:32 +0100 |
commit | f6b6853cc0369ccdaf762c35e338d59bc69675f5 (patch) | |
tree | 5ccd5452b0227a4caaab2a45ed899a2f26e96813 /src/library_gl.js | |
parent | 6e00c50f6d3e1d183d2792990819d82cc3009222 (diff) |
- remove erroneous, trailing comma at the end of the previously added gluOrtho2D function
- fix my AUTHORS name
Signed-off-by: Michael Riss <Michael.Riss@gmx.de>
Diffstat (limited to 'src/library_gl.js')
-rw-r--r-- | src/library_gl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index f6793dc9..2a6ec92f 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -2466,7 +2466,7 @@ var LibraryGL = { gluOrtho2D: function(left, right, bottom, top) { _glOrtho(left, right, bottom, top, -1, 1); - }, + } }; // Simple pass-through functions. Starred ones have return values. [X] ones have X in the C name but not in the JS name |