Browse Source

Convert comma to semicolon in variable assignment in webgl_effects_stereo

Tristan Valcke 8 years ago
parent
commit
3b6c8f2699
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/webgl_effects_stereo.html

+ 2 - 2
examples/webgl_effects_stereo.html

@@ -118,8 +118,8 @@
 
 			function onWindowResize() {
 
-				windowHalfX = window.innerWidth / 2,
-				windowHalfY = window.innerHeight / 2,
+				windowHalfX = window.innerWidth / 2;
+				windowHalfY = window.innerHeight / 2;
 
 				camera.aspect = window.innerWidth / window.innerHeight;
 				camera.updateProjectionMatrix();