diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-12-09 15:29:01 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2014-01-14 12:40:08 +0200 |
commit | 726bbf32e89b8578df540af21194dac4d019eb67 (patch) | |
tree | 06990e3d3086c252267985731438b6dd3a35550f /src | |
parent | 0e36f078d4a9666303340506638726d316096e07 (diff) |
Fix typo in GL library abort function case.
Diffstat (limited to 'src')
-rw-r--r-- | src/library_gl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index f6978c04..64f13701 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -2585,7 +2585,7 @@ var LibraryGL = { return "float"; } - return Abort_NoSupport("Unsupported combiner op: 0x" + op.toString(16)); + return Abort_noSupport("Unsupported combiner op: 0x" + op.toString(16)); } function getCurTexUnit() { @@ -2912,7 +2912,7 @@ var LibraryGL = { } } - return Abort_NoSupport("Unsupported TexEnv mode: 0x" + this.mode.toString(16)); + return Abort_noSupport("Unsupported TexEnv mode: 0x" + this.mode.toString(16)); } CTexEnv.prototype.genCombinerLines = function CTexEnv_getCombinerLines(isColor, outputVar, |