Browse Source

Missing semicolons.

Mr.doob 14 years ago
parent
commit
cb4d4a4fe8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/CanvasRenderer.js

+ 1 - 1
src/renderers/CanvasRenderer.js

@@ -151,7 +151,7 @@ THREE.CanvasRenderer = function ( parameters ) {
 				setBlending( THREE.NormalBlending );
 				setOpacity( 1 );
 
-				_contextFillStyle = 'rgba(' + Math.floor( _clearColor.r * 255 ) + ',' + Math.floor( _clearColor.g * 255 ) + ',' + Math.floor( _clearColor.b * 255 ) + ',' + _clearOpacity + ')'
+				_contextFillStyle = 'rgba(' + Math.floor( _clearColor.r * 255 ) + ',' + Math.floor( _clearColor.g * 255 ) + ',' + Math.floor( _clearColor.b * 255 ) + ',' + _clearOpacity + ')';
 				_context.fillStyle = _contextFillStyle;
 				_context.fillRect( _clearRect.getX(), _clearRect.getY(), _clearRect.getWidth(), _clearRect.getHeight() );