Procházet zdrojové kódy

WebGLCapabilities: Use semicolon after statement (#8948)

Michael Herzog před 9 roky
rodič
revize
67b0e3db91
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/renderers/webgl/WebGLCapabilities.js

+ 1 - 1
src/renderers/webgl/WebGLCapabilities.js

@@ -32,7 +32,7 @@ THREE.WebGLCapabilities = function ( gl, extensions, parameters ) {
 
 	this.getMaxPrecision = getMaxPrecision;
 
-	this.precision = parameters.precision !== undefined ? parameters.precision : 'highp',
+	this.precision = parameters.precision !== undefined ? parameters.precision : 'highp';
 	this.logarithmicDepthBuffer = parameters.logarithmicDepthBuffer !== undefined ? parameters.logarithmicDepthBuffer : false;
 
 	this.maxTextures = gl.getParameter( gl.MAX_TEXTURE_IMAGE_UNITS );