Ver Fonte

Convert comma to semicolon in variable assignment in webgl_effects_stereo

Tristan Valcke há 8 anos atrás
pai
commit
3b6c8f2699
1 ficheiros alterados com 2 adições e 2 exclusões
  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();