Explorar el Código

Change comma to semicolon to keep consistency in webgl_effect_anaglyph

Tristan Valcke hace 8 años
padre
commit
3cf022a27e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      examples/webgl_effects_anaglyph.html

+ 2 - 2
examples/webgl_effects_anaglyph.html

@@ -126,8 +126,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();