diff options
-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 ba0216cb..9dceb058 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, |